본문 바로가기
파이썬/파이썬 궁금증 회고

아나콘다 가상환경에서 파이썬 라이브러리 설치 안될 때

by davi_kr 2023. 10. 17.

목차

    반응형

    아나콘다 가상 환경에서 pyautogui를 사용해보려 

    conda install -c "conda-forge/label/cf202003" pyautogui를 이용해서 설치를 해봤는데 에러가 났습니다.

     

    에러 코드

    더보기

    Collecting package metadata (current_repodata.json): done
    Solving environment: failed with initial frozen solve. Retrying with flexible solve.
    Collecting package metadata (repodata.json): done
    Solving environment: failed with initial frozen solve. Retrying with flexible solve.

    PackagesNotFoundError: The following packages are not available from current channels:

      - pyautogui

    Current channels:

      - https://conda.anaconda.org/conda-forge/label/cf202003/osx-arm64
      - https://conda.anaconda.org/conda-forge/label/cf202003/noarch
      - https://conda.anaconda.org/conda-forge/osx-arm64
      - https://conda.anaconda.org/conda-forge/noarch
      - https://repo.anaconda.com/pkgs/main/osx-arm64
      - https://repo.anaconda.com/pkgs/main/noarch
      - https://repo.anaconda.com/pkgs/r/osx-arm64
      - https://repo.anaconda.com/pkgs/r/noarch

    To search for alternate channels that may provide the conda package you're
    looking for, navigate to

        https://anaconda.org

    and use the search bar at the top of the page.

     

    다른 방법도 찾아서 다른 채널(conda install -c conda-forge pyautogui)로도 시도해봤으나 실패했습니다.

    마찬가지로 pip3 install pyautogui로 설치를 했는데 이번에는 가상환경에 설치가 안되는 이슈가 생겼습니다.

     

    결과적으로 방법을 찾았는데.. 아예 가상 환경 경로를 잡아주고 거기서 설치를 하니 가상환경에서 정상적으로 설치가 됐습니다.

    더보기

    /opt/anaconda3/envs/가상환경 이름/bin/pip install pyautogui

     

    다른 라이브러리들도 에러가 나면 이걸로 설치를 해봐야겠습니다.

    반응형

    댓글