Reputation: 1
I create a new conda virtual environment and try to install the pytorch 1.9.1 by using conda install pytorch=1.9.1. But, conda reports the PackageNotFoundError as follows. PackagesNotFoundError: The following packages are not available from current channels:
Current channels:
Upvotes: 0
Views: 2023
Reputation: 12567
The right commands are listed on the pytorch web site. They should use the pytorch
channel, e.g. with cuda:
conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c nvidia
Upvotes: 1