How to install pytorch in Anaconda with conda or pip?

后端 未结 9 1229
星月不相逢
星月不相逢 2020-12-16 11:50

I am trying to install pytorch in Anaconda to work with Python 3.5 in Windows. Following the instructions in pytorch.org I introduced the following code in Anaconda:

相关标签:
9条回答
  • 2020-12-16 12:33

    Visit https://anaconda.org/pytorch/torchvision and you will find the solution

    conda install -c pytorch torchvision
    
    0 讨论(0)
  • 2020-12-16 12:34

    Try running:

    conda install -c pytorch pytorch
    
    0 讨论(0)
  • 2020-12-16 12:36

    try updating the base conda package with the following command,then you can try reistalling it.

    1. conda update --all
    2. conda update -n base conda
    0 讨论(0)
提交回复
热议问题