_ 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
_ Create a new project
- 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.
- 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>
_ Author
S.Yatsuzuka