1. 程式人生 > >【AI】Mxnet-Ubuntu安裝方法

【AI】Mxnet-Ubuntu安裝方法

MXnet Ununtu安裝配置


環境說明

2018/09/26
Ubuntu14.04-32bit
vmware10
win10-1803
mxnet1.3.1


資源下載

git下載mxnet原始碼很慢, 所以我將下載好的原始碼已經打包

連結: https://pan.baidu.com/s/1wGMxAlW456P7HMeA7IQsTQ 提取碼: nc4b

安裝方法

  1. 安裝python以及必備庫
    sudo apt-get install python python-setuptools python-numpy
    
  2. 安裝Git
    sudo apt-get install git
    
  3. 從Github上獲取MXNet原始碼並解壓
    git clone --recursive https://github.com/dmlc/mxnet
    tar xvf mxnet.tar.gz
    
  4. 配置mxnet
    cd mxnet
    make -j$(nproc)   #利用多核特性自動配置
    
  5. 安裝mxnet
    cd python
    python setup.py install
    
  6. 測試(這是一個用於影象的分類器)
    cd ../example/image-classification
    python train_mnist.py 
    
  7. 測試結果

錯誤處理

錯誤1:

See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions.
make: *** [build/src/operator/tensor/elemwise_unary_op_basic.o] Error 4
make: *** Waiting for unfinished jobs…
g++: internal compiler error: Killed (program cc1plus)
此錯誤是由於虛擬機器記憶體太小導致的,調整記憶體後重新安裝


ends…