天天看點

DL架構之MXNet :深度學習架構之MXNet 的簡介、安裝、使用方法、應用案例之詳細攻略(二)

MXNet 的安裝

1、第一次安裝

pip install mxnet

DL架構之MXNet :深度學習架構之MXNet 的簡介、安裝、使用方法、應用案例之詳細攻略(二)

Collecting mxnet

 Downloading

https://files.pythonhosted.org/packages/d1/b6/38d9ab1b16c456224823e737f1bb95fe3ff056f3834fba01cd157d59b574/mxnet-1.4.0.post0-py2.py3-none-win_amd64.whl

(21.9MB)

   100% |████████████████████████████████| 21.9MB 34kB/s

Requirement already satisfied: requests<2.19.0,>=2.18.4 in f:\program files\python\python36\lib\site-packages (from mxnet) (2.18.4)

Collecting graphviz<0.9.0,>=0.8.1 (from mxnet)

https://files.pythonhosted.org/packages/53/39/4ab213673844e0c004bed8a0781a0721a3f6bb23eb8854ee75c236428892/graphviz-0.8.4-py2.py3-none-any.whl

Collecting numpy<1.15.0,>=1.8.2 (from mxnet)

https://files.pythonhosted.org/packages/dc/99/f824a73251589d9fcef2384f9dd21bd1601597fda92ced5882940586ec37/numpy-1.14.6-cp36-none-win_amd64.whl

(13.4MB)

   100% |████████████████████████████████| 13.4MB 30kB/s

Requirement already satisfied: certifi>=2017.4.17 in f:\program files\python\python36\lib\site-packages (from requests<2.19.0,>=2.18.4->mxnet) (2018.1.18)

Requirement already satisfied: chardet<3.1.0,>=3.0.2 in f:\program files\python\python36\lib\site-packages (from requests<2.19.0,>=2.18.4->mxnet) (3.0.4)

Requirement already satisfied: urllib3<1.23,>=1.21.1 in f:\program files\python\python36\lib\site-packages (from requests<2.19.0,>=2.18.4->mxnet) (1.22)

Requirement already satisfied: idna<2.7,>=2.5 in f:\program files\python\python36\lib\site-packages (from requests<2.19.0,>=2.18.4->mxnet) (2.6)

tensorflow-gpu 1.4.0 requires enum34>=1.1.6, which is not installed.

tensorflow 1.10.0 has requirement numpy<=1.14.5,>=1.13.3, but you'll have numpy 1.14.6 which is incompatible.

moviepy 0.2.3.2 has requirement decorator==4.0.11, but you'll have decorator 4.3.0 which is incompatible.

moviepy 0.2.3.2 has requirement tqdm==4.11.2, but you'll have tqdm 4.25.0 which is incompatible.

Installing collected packages: graphviz, numpy, mxnet

 Found existing installation: numpy 1.15.0rc1+mkl

   Uninstalling numpy-1.15.0rc1+mkl:

Could not install packages due to an EnvironmentError: [WinError 5] 拒絕通路。: 'f:\\program files\\python\\python36\\lib\\site-packages\\numpy\\core\\_multiarray_tests.cp36-win_amd64.pyd'

Consider using the `--user` option or check the permissions.

遇到問題:成功解決Could not install packages due to an EnvironmentError: [WinError 5] 拒絕通路。: 'f:\\program files\\p

2、第二次安裝

DL架構之MXNet :深度學習架構之MXNet 的簡介、安裝、使用方法、應用案例之詳細攻略(二)