This step can be seen as the installation of Caffe can be done or unnecessary steps, but I recommend the installation of Anaconda2 and Anaconda3, which will contain a lot of modules, eliminating the Caffe learning process of the module does not exist in the various errors.
First step, enter the Anaconda website to download the installation package
Installing ANACONDA2 & Anaconda3 concurrently
Installation of ANACONDA2 has been installed under the condition of Anaconda3
conda create -n py35 python=3.5 anaconda
Run Environment switch:
Enter the PY35 environment source activate py35
Return to PY27 Environmentsource deactivate py35
Installation of Anaconda3 has been installed under the condition of Anaconda2
conda create -n py27 python=2.7 anaconda
Enter the PY27 environment source activate py27
Return to PY35 Environmentsource deactivate py27
Installation:
Place the downloaded anaconda in the home folder and execute the following code
Go to home directory
CD ~
Then execute the installation code
Bash anaconda3-5.1.0-linux-x86_64.sh
Or
Bash anaconda2-5.1.0-linux-x86_64.sh
Verify that the installation executed successfully:
Python2--version
Python3--version
Reference Address: 79213392
CAFFE (0): Install Anaconda2 and Anaconda3 under Ubuntu