web-dev-qa-db-fra.com

Impossible d'installer PyTorch - Erreur: la commande erronée avec l'état de sortie 1:

J'essaie de travailler avec python ZincBase et besoin d'installer Pytorch sous Windows pour cela. Lors de l'exécution

pip install torch

Je reçois une erreur en disant

ERROR: Command errored out with exit status 1:
command: 'c:\data-nobackup\development\im-099329- 
gremlintest\env\scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\104172\\AppData\\Local\\Temp\\pip-install-5go0i_r_\\torch\\setup.py'"'"'; __file__='"'"'C:\\Users\\104172\\AppData\\Local\\Temp\\pip-install-5go0i_r_\\torch\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\104172\AppData\Local\Temp\pip-wheel-bk0m_2ck' --python-tag cp36
   cwd: C:\Users\104172\AppData\Local\Temp\pip-install-5go0i_r_\torch\
  Complete output (30 lines):
  running bdist_wheel
  running build
  running build_deps
  Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "C:\Users\104172\AppData\Local\Temp\pip-install-5go0i_r_\torch\setup.py", line 265, in <module>
  description="Tensors and Dynamic neural networks in Python with strong GPU acceleration",
File "c:\data-nobackup\development\im-099329-gremlintest\env\lib\site-packages\setuptools\__init__.py", line 145, in setup
  return distutils.core.setup(**attrs)
File "c:\customsoftware\python3.6\Lib\distutils\core.py", line 148, in setup
  dist.run_commands()
File "c:\customsoftware\python3.6\Lib\distutils\dist.py", line 955, in run_commands
  self.run_command(cmd)
File "c:\customsoftware\python3.6\Lib\distutils\dist.py", line 974, in run_command
  cmd_obj.run()
File "c:\data-nobackup\development\im-099329-gremlintest\env\lib\site-packages\wheel\bdist_wheel.py", line 192, in run
  self.run_command('build')
File "c:\customsoftware\python3.6\Lib\distutils\cmd.py", line 313, in run_command
  self.distribution.run_command(command)
File "c:\customsoftware\python3.6\Lib\distutils\dist.py", line 974, in run_command
  cmd_obj.run()
File "c:\customsoftware\python3.6\Lib\distutils\command\build.py", line 135, in run
  self.run_command(cmd_name)
File "c:\customsoftware\python3.6\Lib\distutils\cmd.py", line 313, in run_command
  self.distribution.run_command(command)
File "c:\customsoftware\python3.6\Lib\distutils\dist.py", line 974, in run_command
  cmd_obj.run()
File "C:\Users\104172\AppData\Local\Temp\pip-install-5go0i_r_\torch\setup.py", line 51, in run
  from tools.nnwrap import generate_wrappers as generate_nn_wrappers
  ModuleNotFoundError: No module named 'tools.nnwrap'

  ERROR: Failed building wheel for torch

Comment puis-je installer Pytorch?

2
Donna Schweitzer

Vous pouvez simplement visiter le site Web Pytorch à pytorch.org

Ensuite, allez à la page "Get Démarrer". Vous verrez un outil en ligne intéressant dans lequel vous pouvez sélectionner différentes options et fournira une commande appropriée à installer "Torch".

Tout comme la photo suivante:

enter image description here

Comme vous pouvez le constater avec la sélection ci-dessus, la commande suivante pour l'installation de la torche serait le résultat:

pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html
2
K. Aslansefat

Contrairement aux autres bibliothèques, nous ne pouvons pas simplement installer Pytorch localement avec la commande PIP Install Torch.

Allez à - https://pytorch.org site Web et choisissez votre machine et votre environnement et vous fournira la commande à exécuter, comme ceci -

pip3 install torch===1.2.0 torchvision===0.4.0 -f https://download.pytorch.org/whl/torch_stable.html

Pour Python 3.7 -

pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1-cp37-cp37m-win_AMD64.whlpip3 install torchvision

1
Sachin Cholkar