일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- nav2 first-time robot setup guide
- first-time robot setup guide
- humble 환경설정
- ros2 development guides
- nav2 getting started
- Python
- nav2 development guides
- nav2 튜토리얼
- ros2 remapping
- docker foxy
- nav2 설치
- nav2 tutorial
- 코드업
- foxy nav2
- Foxy tutorial
- ros2 환경설정
- CODEUP 6073
- ros2 configuring environment
- ros2 foxy docker
- ros2 튜토리얼
- nav2 dev contatiner
- ros2 foxy tutorial
- error
- CodeUp
- ros2 튜토리얼 환경설정
- setting up transformations
- ros2 transformations 개념
- ROS FOXY 튜토리얼
- Nav2 document
- humble development guides
Archives
- Today
- Total
BAN2ARU
[Python] ERROR: No matching distribution found for torchvision==0.8.0+cu110 본문
Language/Python
[Python] ERROR: No matching distribution found for torchvision==0.8.0+cu110
밴나루 2022. 5. 9. 19:39반응형
https://pytorch.org/get-started/previous-versions/
PyTorch
An open source machine learning framework that accelerates the path from research prototyping to production deployment.
pytorch.org
여기에서는 pytorch 1.7.0의 cuda 11.0 ver에 관해서
pip install torch==1.7.0+cu110 torchvision==0.8.0+cu110 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
로 되어있지만 이 문구를 실행하면
ERROR: No matching distribution found for torchvision==0.8.0+cu110
와 같은 오류가 발생한다. 이를 다음고 같이 torchvision을 0.8.1로 수정하면 된다.
pip install torch==1.7.0+cu110 torchvision==0.8.1+cu110 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
0.8.0ver에서 생긴 오류로 0.8.1ver에서 오류가 해결되어 잘 동작한다고 한다.
-Reference
728x90
'Language > Python' 카테고리의 다른 글
[Python/Pytorch] TORCH.IS_TENSOR : Torch Tensor 여부 확인 (0) | 2022.05.17 |
---|---|
[Python] Vars( ) 함수 (2) | 2022.05.10 |
[Python] cython-bbox 설치 윈도우 오류 Building wheel for cython-bbox (setup.py) ... error (0) | 2022.05.09 |
[Python] PackagesNotFoundError : anacona로 pytorch 설치 시 cudatoolkit=11.1 패키지 못 찾는 오류 (0) | 2022.05.05 |
[Python] 문자열 포맷팅 - format 및 f-string(formated string literal) (0) | 2022.04.26 |
Comments