No way to install PyTorch!

In the past I wrote everything myself in c++ / cuda. So I have seen all this mention of handy libraries for ML. So I thought I would see what it was all about.

So I follow the steps on PyTorch website. I install Anaconda.

  • First problem, no instructions on what command to install pytorch via Annaconda. just some vague reference to a command you need to run.
  • So I google it and find a random website with a script to do it!! https://deeplizard.com/learn/video/UWlFM0R_x6I
    wtf guys, anyway the script is an old version of Cuda.
    conda install pytorch torchvision cudatoolkit=10.0 -c pytorch

so I try a current version
conda install pytorch cudatoolkit=11.1 -c pytorch

Next problem:
Anaconda complains that “The following packages are not available from current channels”

  • cudatoolkit=11.1

so thanks for wasting my time Pytorch. I have no way to use you with the current cuda libraries. So back to doing it myself.

How do people work like this?

Hi,
Yes it can be hard at times. but the instructions are given in the official site. just navigate to https://pytorch.org/ and you’ll see this :

Then you simply choose your method, for example I’d like to use pip and install the cuda11 version, I click on pip, then cuda 11.0 and bingo I get my commands to install pytorch :

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

its as simple as that.
You could also post a question and we’d be more than happy to help you out.
Happy Pytorching :wink:

1 Like

Thanks I was able to install Cuda 11.0,but where is Cuda 11.1? Its 3 months old and has updates for Ampere based GPUs.

Not just 11.1, there is 11.1.1 released already.

I hate using old versions. You guys should know with ML every drop counts. So why the super slowness to update?

Say you are spending thousands on A100s, you would not use pytorch because its not maximising the latest CUDA!

Its up to the Team Pytorch @ptrblck may have a better answer as to why.
It maybe that the Cuda11 was released back in May, and the codebase was tested on it. Cuda11.1 was released around september 23 I guess, around 1 month before releasing the stable 1.7.
So it makes sense to stick to the version you have been working on for the past couple of months and not make yourself deal with some probable regression/bugs caused by the new update. (take into account the OSes, drivers, etc as well)
If there is a need for bleeding edge cuda, anyone can easily build from source and call it a day. For the majority of users though the stability is the primary goal.
Nevertheless, we will be expecting a 1.7.1 in a near future (possibily in December?) and that might include cuda 11.1 I’m not sure though.
Again as I stated earlier, you can always build Pytorch against the latest cudatoolkit and enjoy it. the build process is pretty easy to follow and usually is very straightforward.

Cheers.

The binaries are not shipping with CUDA11.1, as we couldn’t prune libs with this version and were running into errors. If you need to use the latest library versions (CUDA, cudnn, NCCL etc.), you could always build PyTorch from source or use the NGC docker containers.

Your A100s work with CUDA11.0 and since sm86 is SASS binary compatible with sm80, also the 30XX series works.