Hello World from OSS Silicon Valley


HowToUse/Anaconda/4.2


#contents

*Prerequisite [#cd114694]
-Ubuntu Server installation (You can refer [[HowToUse/UbuntuServer/14.02]])
-Ubuntu Server installation (You can refer [[HowToUse/UbuntuServer/16.02]])

*Install&Setup [#udfd73f3]
:Step.1|
Download Anaconda installer from [[here:https://www.continuum.io/downloads#linux]]

: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 [#x754e241]
**Create a new project [#we60fefa]
: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

:Step.3|
You can check what projects you have by the following command.

 $ conda env list

**Manage modules. [#i17f0448]
:Step.1|
Check the installed module.

 $ conda list

:Step.2|
Install a new module.

 $ conda install <module name>

:Step.3|
Update the modules.

 $ conda update <module name>

**Remove conda environment [#d67d9b99]
:Step.1|
Execute the following command.

 $ conda remove --name <project name> --all


*Author [#p14051ef]
S.Yatsuzuka


#back(back,center,0)