gpt4 book ai didi

pip - 如何在 Windows 10 上安装 fastai

转载 作者:行者123 更新时间:2023-12-01 21:55:26 29 4
gpt4 key购买 nike

我似乎无法安装正确版本的 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 install fast 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

我终于到了它说成功安装了 6 个、pillow 和 torch 但 torch 为 0.3 的地步,这是不兼容的。

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

希望安装 pytorch 或 fastai 似乎没有任何效果

最佳答案

您可以尝试通过创建一个 conda 环境来安装类(class),前提是您的 Windows 机器上已经安装了 anaconda。

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 notebook 中使用 conda 环境。为此激活环境并运行以下命令:

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

关于pip - 如何在 Windows 10 上安装 fastai,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57813777/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com