installing anaconda for python 3.6
Conda installation
Download conda installer sh file form site https://www.anaconda.com/download/#linux
bash Anacondax-x.x.x.x-Linux-x86_64.sh
First time to create conda envoirment
conda create --name my_env python=3
move into envoirment
source activate my_env
installing any package
conda install ggplot
searching any package
conda search ggplot
getting list of all linked (can be installed) packages
conda list
closing environment
source deactivate
Once it is install you can use it with Jupyter notebook, Rodeo or Spyder
Using Jupyter Notebook
jupyter notebook
Once launched in browser choose New => Python3
Python command in Rodeo http://rodeo.yhat.com/docs/
Go settings and change command path as :
~/anaconda3/envs/my_env/bin/python3.6
or
/home/rajiv/anaconda3/envs/my_env/bin/python3.6
Python command in Spyder
Change interpretor path :
~/anaconda3/envs/my_env/bin/python3.6
or
/home/rajiv/anaconda3/envs/my_env/bin/python3.6
Adding R Language
conda install -c r r-irkernel
Download conda installer sh file form site https://www.anaconda.com/download/#linux
bash Anacondax-x.x.x.x-Linux-x86_64.sh
First time to create conda envoirment
conda create --name my_env python=3
move into envoirment
source activate my_env
installing any package
conda install ggplot
searching any package
conda search ggplot
getting list of all linked (can be installed) packages
conda list
closing environment
source deactivate
Once it is install you can use it with Jupyter notebook, Rodeo or Spyder
Using Jupyter Notebook
jupyter notebook
Once launched in browser choose New => Python3
Python command in Rodeo http://rodeo.yhat.com/docs/
Go settings and change command path as :
~/anaconda3/envs/my_env/bin/python3.6
or
/home/rajiv/anaconda3/envs/my_env/bin/python3.6
Python command in Spyder
Change interpretor path :
~/anaconda3/envs/my_env/bin/python3.6
or
/home/rajiv/anaconda3/envs/my_env/bin/python3.6
Adding R Language
conda install -c r r-irkernel
Comments
Post a Comment