Hello World from OSS Silicon Valley


HowToUse/Anaconda/4.2


_ Prerequisite

  • Ubuntu Server installation (You can refer HowToUse/UbuntuServer/14.02)

_ Install&Setup

Step.1
Download Anaconda installer from here
Step.2
Execute installation.
$ bash Anaconda3-4.2.0-Linux-x86_64.sh
Step.3
load anaconda path.
$ source ~/.bashrc

Then you would be able to access the anaconda's files.

_ HowToUse

Step.1
Create new project.
$ conda create -n <project name> python=<python version>

ex)

$ conda create -n sample python=2.7.9
Step.2
Activate the new project.
$ source activate <project name>

ex)

$ source activate sample

_ Author

S.Yatsuzuka

[ back ]