簡單記錄一些安裝命令,以及安裝Tensorflow
、PyTorch
,跟編譯PyTorch
等
Intel Distributed Python
稍微記錄一下怎麼用Anaconda
建置虛擬環境,安裝Intel
發行的Python
安裝miniconda
之後,用下面指令可以載入Python的環境
(建議安裝all-user,並安裝到C:\Miniconda3
,可以避免一些問題)
1 | C:\Miniconda3\Scripts\activate.bat |
引入Intel channel,安裝intel發行的Python
1 | conda config --add channels intel |
安裝之後,啟用idp這個環境
1 | activate idp |
Tensorflow, Keras安裝方法
建議不要更新html5lib
,避免conda出現錯誤,無法再使用
1 | pip install tensorflow-gpu -I --no-update-deps |
PyTorch安裝方法
直接利用conda安裝
1 | C:\Miniconda3\Scripts\activate.bat idp |
自行編譯
安裝好VS2017, CUDA 9.0之後,執行下面
1 | git clone https://github.com/peterjc123/pytorch-scripts.git |
編譯PyTorch延伸套件
1 | git clone https://github.com/pytorch/extension-ffi.git |