En gros, ce n'est pas très différent de l'installation sur Blender 2.8x. Je pensais qu'il ne serait pas possible de l'installer en 2.90, mais c'était plus facile que prévu. Je n'ai pas beaucoup d'informations, mais je vais en prendre note.
Blender est supposé être installé dans C: \ Program Files \ Blender Foundation
. On suppose que les pilotes CUDA et GPU sont déjà installés.
Seulement ça.
.powershell
> cd C:\Program Files\Blender Foundation\Blender 2.90\2.90\python\bin
> ./python -m pip install --upgrade pip
Collecting pip
Downloading https://files.pythonhosted.org/packages/cb/28/91f26bd088ce8e22169032100d4260614fc3da435025ff389ef1d396a433/pip-20.2.4-py2.py3-none-any.whl (1.5MB)
|████████████████████████████████| 1.5MB 1.1MB/s
Installing collected packages: pip
Found existing installation: pip 19.2.3
Uninstalling pip-19.2.3:
Successfully uninstalled pip-19.2.3
Successfully installed pip-20.2.4
> ./python -m pip install torch==1.6.0+cu101 torchvision==0.7.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html
Looking in links: https://download.pytorch.org/whl/torch_stable.html
Collecting torch==1.6.0+cu101
Downloading https://download.pytorch.org/whl/cu101/torch-1.6.0%2Bcu101-cp37-cp37m-win_amd64.whl (1021.6 MB)
|████████████████████████████████| 1021.6 MB 750 bytes/s
...
Successfully installed future-0.18.2 pillow-8.0.0 torch-1.6.0+cu101 torchvision-0.7.0+cu101
>
Pour installer Pytorch, copiez et collez simplement la version CUDA etc. de la page officielle comme d'habitude.
De plus, utilisez pip pour ajouter les éléments nécessaires tels que matplotlib.
.powershell
> ./python -m pip install matplotlib
Collecting matplotlib
Downloading matplotlib-3.3.2-cp37-cp37m-win_amd64.whl (8.5 MB)
|████████████████████████████████| 8.5 MB 1.3 MB/s
...
Successfully installed certifi-2020.6.20 cycler-0.10.0 kiwisolver-1.2.0 matplotlib-3.3.2 pyparsing-2.4.7 python-dateutil-2.8.1 six-1.15.0
S'il est installé avec succès, vous pouvez exécuter import torch
dans la console python de Blender.
Au fait, lorsque j'ai essayé d'exécuter pytorch_example / mnist / main.py, j'ai eu une erreur disant que je n'ai pas l'autorisation d'accès. Cela peut être évité en exécutant Blender avec des privilèges d'administrateur. Vous pouvez également contourner ce problème en installant Blender dans un dossier auquel vous pouvez accéder.
Recommended Posts