FY king
FY king

Reputation: 1

Could not find the pytorch 1.9.1 in conda's current channels

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

Answers (1)

MWB
MWB

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

Related Questions