*# miniconda on ubuntu (around 50mb)*
apt update
apt install -y curl
curl -L -O -C - 
https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda*.sh

yes
yes

source ~/.bashrc

conda update -n base conda
y

conda create --name mypython3 python=3 
y

ln -s ~/miniconda3/envs/mypython3/bin/python3 /bin/mypy3

conda create --name mypython2 python=2 
y

ln -s ~/miniconda3/envs/mypython2/bin/python2 /bin/mypy2

mypy3 -V
mypy2 -V

*# anaconda on ubuntu (around 500mb)*
apt update
apt install -y curl
curl -L -O -C - 
https://repo.anaconda.com/archive/Anaconda3-5.1.0-Linux-x86_64.sh
bash Anaconda*.sh

yes
yes
no

source ~/.bashrc

conda update -n base conda
y

conda create --name mypython3 python=3 
y

ln -s ~/anaconda3/envs/mypython3/bin/python3 /bin/mypy3

conda create --name mypython2 python=2 
y

ln -s ~/anaconda3/envs/mypython2/bin/python2 /bin/mypy2

mypy3 -V
mypy2 -V

thx and best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to