如何在Windows 10上安装Fastai

时间:2019-09-05 22:44:31

标签: pip conda

我似乎无法安装正确版本的Torch,并且无法使快速AI库正常工作

我尝试

Python 3.7

pip3 install https://download.pytorch.org/whl/cu100/torch-1.0.1-cp37-cp37m-win_amd64.whl
pip3 install torchvision
 Could not find a version that satisfies the requirement torch>=1.1.0 (from torchvision) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
No matching distribution found for torch>=1.1.0 (from torchvision)

当我尝试使用conda快速安装AI时,我可能会降低我的GPU的等级

然后我尝试了pip,但找不到文件C:\Users\Admin\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\caffe2\python\serialized_test\data\operator_test

我终于达到了说成功安装了六个,枕头和火炬的地步,但是火炬在0.3时是无法兼容的。

pip3 install https://download.pytorch.org/whl/cu100/torch-1.0.1-cp37-cp37m-win_amd64.whl
pip3 install torchvision

预期安装pytorch或fastai似乎没有任何作用

1 个答案:

答案 0 :(得分:1)

如果Windows计算机中已经安装了anaconda,则可以尝试通过创建conda环境来尝试安装课程。

conda update conda    
conda create -n fastai_conda python=3.6
conda activate fastai_conda
conda install fastai pytorch=1.0.0 -c fastai -c pytorch -c conda-forge

或者要安装CPU版本,可以在创建环境后使用以下命令

conda install -c pytorch pytorch-cpu torchvision
conda install -c fastai fastai

您可以使用此命令检查安装是否正确

python -m fastai.utils.show_install

您可能还需要安装ipykernel才能在jupyter笔记本中使用conda环境。为此,请激活该环境并运行以下命令:

conda install nb_conda_kernels
python -m ipykernel install --user --name fastai_v1 --display-name "fastai v1"
conda install ipywidgets