pytorch 이전 버전 설치

 pytorch 이전 버전 설치

1
2
3
4
5
# CUDA 10.2
conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 cudatoolkit=10.2 -c pytorch

# CUDA 11.3
conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 cudatoolkit=11.3 -c pytorch -c conda-forge

Solving environment: failed with initial frozen solve. Retrying with flexible solve 문제 해결

Solving environment: failed with initial frozen solve. Retrying with flexible solve 문제 해결

conda install을 하다 보면 이런 에러가 종종 발생을 한다.

이때는 pip와 conda를 최신으로 업데이트 하고 다시 해보자!


1
2
3
pip install —upgrade pip
conda update -n base conda
conda update —all