## miniconda on osx
# Download and Install Package
cd ~/Downloads
curl -L -O -C - 
https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash Miniconda*.sh

yes
yes

# Load New Path
source ~/.bash_profile

# Update Package
conda update -n base conda

# Create Environment
conda create --name mypython3 python=3
conda create --name mypython2 python=2

# List Environment
conda env list

# Activate Environment
source activate mypython3
source activate mypython2

# Deactivate Environment
source deactivate

*N.B.*
- different when installed on ubuntu is on the ~/.bashrc and ~/.bash_profile
- better to not create symbolic link, just use the environment created 
(activate and deactivate)

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