$ bash Anaconda3-4.2.0-Linux-x86_64.sh
$ source ~/.bashrc
Then you would be able to access the anaconda's files.
$ conda create -n <project name> python=<python version>
ex)
$ conda create -n sample python=2.7.9
$ source activate <project name>
ex)
$ source activate sample
S.Yatsuzuka