목차
아나콘다 가상 환경에서 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
다른 라이브러리들도 에러가 나면 이걸로 설치를 해봐야겠습니다.
'파이썬 > 파이썬 궁금증 회고' 카테고리의 다른 글
파이썬 pandas - 데이터프레임에서 결측된 값, 결측된 행 찾기 (0) | 2024.07.23 |
---|---|
파이썬 concat - 특정 경로 내 CSV 파일들을 하나의 DF로 합치기(병합하기) (0) | 2024.07.22 |
.py와 .ipynb에서 같은 파일 사용하기(같은 파일 경로 사용하기), 다른 컴퓨터에서 같은 파일 사용하기 (0) | 2023.05.12 |
파이썬 SettingWithCopyWarning과 FutureWarning 해결하기: Pandas DataFrame에서 .copy() 사용 및 numeric_only 지정 (0) | 2023.04.18 |
맥) 아나콘다 네비게이터에서 VS code 안 보일 때 해결 방법 (0) | 2023.04.12 |
댓글