当前位置: 代码迷 >> 综合 >> Win10 Python3.6.5 Cuda10 GTX 1080安装fastai
  详细解决方案

Win10 Python3.6.5 Cuda10 GTX 1080安装fastai

热度:60   发布时间:2023-12-15 17:29:12.0

1,安装和升级

【我的安装环境】

python 3.6.5
GeForce GTX 1080
64位 Windows-10-10.0.17134-SP0
Cuda compilation tools, release 10.0, V10.0.130
cudnn-10.0-windows10-x64-v7.4.2.24

注意:python3.6和Pytorch v1安装是 fastai v1的最低要求:https://github.com/fastai/fastai/blob/master/README.md#installation

否则只能安装 fastai v0.7

开始安装:

# Win 10下需要先安装torch和torchvision,打开https://pytorch.org/get-started/locally/
# 选择系统配置,使用生成的链接进行安装。我的是Python3.6,cuda 10,使用pip安装# 安装torch, torchvision
pip3 install https://download.pytorch.org/whl/cu100/torch-1.1.0-cp36-cp36m-win_amd64.whl
pip3 install https://download.pytorch.org/whl/cu100/torchvision-0.3.0-cp36-cp36m-win_amd64.whl# 安装Bottleneck,如果安装不上请参考:https://blog.csdn.net/qxqxqzzz/article/details/91998094
pip install Bottleneck# 安装fastai
pip install fastai# 更新
pip install --upgrade fastai

2,查看版本:

# 0.7 版的fastai
pip list# 1.0及以上版本的
import fastai
fastai.__version__

3,查看安装环境

from fastai.utils import *
show_install()

或在终端输入:

python -m fastai.utils.show_install

 

  相关解决方案