1. 程式人生 > >ubuntu16安裝fastai

ubuntu16安裝fastai

本文主要介紹ubuntu16中安裝fastai。

由於我走了很多彎路,所以在強烈推薦大家使用conda進行安裝!!!最好不要使用pip進行安裝。

首先,在ubuntu中安裝並配置anaconda環境變數(最好新增到/etc/profile中)。

參考:Ubuntu 安裝 Anaconda3 詳細步驟

Ubuntu自定義路徑安裝Anaconda

接下來,使用conda安裝fastai。

  • GPU

    conda install -c pytorch pytorch-nightly cuda92 
    conda install -c fastai torchvision-nightly 
    conda install -c fastai fastai

     

  • CPU

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