일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- humble 환경설정
- 코드업
- ros2 튜토리얼
- nav2 first-time robot setup guide
- ROS FOXY 튜토리얼
- ros2 foxy docker
- humble development guides
- nav2 튜토리얼
- nav2 development guides
- development guides
- Foxy tutorial
- nav2 getting started
- ros2 foxy tutorial
- CodeUp
- nav2 dev contatiner
- ros2 configuring environment
- first-time robot setup guide
- CODEUP 6073
- ros2 튜토리얼 환경설정
- Python
- foxy nav2
- ros2 환경설정
- nav2 development guides
- ros2 remapping
- nav2 tutorial
- Nav2 document
- ros2 development guides
- nav2 설치
- error
- docker foxy
Archives
- Today
- Total
BAN2ARU
[Python] PackagesNotFoundError : anacona로 pytorch 설치 시 cudatoolkit=11.1 패키지 못 찾는 오류 본문
Language/Python
[Python] PackagesNotFoundError : anacona로 pytorch 설치 시 cudatoolkit=11.1 패키지 못 찾는 오류
밴나루 2022. 5. 5. 13:53반응형
conda install pytorch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 cudatoolkit=11.1 -c pytorch
로 anaconda로 설치시
conda install pytorch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 cudatoolkit=11.1 -c pytorch
PackagesNotFoundError: The following packages are not available from current channels:
- cudatoolkit=11.1
Current channels:
- https://conda.anaconda.org/pytorch/win-64
- https://conda.anaconda.org/pytorch/noarch
- https://repo.anaconda.com/pkgs/main/win-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/free/win-64
- https://repo.anaconda.com/pkgs/free/noarch
- https://repo.anaconda.com/pkgs/r/win-64
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/pro/win-64
- https://repo.anaconda.com/pkgs/pro/noarch
- https://repo.anaconda.com/pkgs/msys2/win-64
- https://repo.anaconda.com/pkgs/msys2/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.
라는 오류가 발생함! 즉 cuda 11.1 ver의 패키지를 찾을 수 없다는 오류 발생
이 때에는
conda install pytorch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 cudatoolkit=11.1 -c pytorch -c conda-forge
로 설정하면 제대로 설치되는 것을 확인할 수 있음. (뒤에 -c conda-forge를 추가해주세용!)
conda에서 제공하는 기본 채널에 해당 패키지들이 없어서 설치가 안되는 것인데,
conda-forge는 다양한 conda 패키지들을 조합된 receipes들이 있는 채널로서 package not found error는 거의 다 해결할 수 있음!
728x90
'Language > Python' 카테고리의 다른 글
[Python] ERROR: No matching distribution found for torchvision==0.8.0+cu110 (0) | 2022.05.09 |
---|---|
[Python] cython-bbox 설치 윈도우 오류 Building wheel for cython-bbox (setup.py) ... error (0) | 2022.05.09 |
[Python] 문자열 포맷팅 - format 및 f-string(formated string literal) (0) | 2022.04.26 |
[Python] print() - sep, end, file (print로 텍스트 파일 출력하기) (0) | 2022.04.25 |
[Python] append(), extend(), insert() 비교 (0) | 2022.04.22 |
Comments