- Download Miniconda
bash path/to/Miniconda3-latest-MacOSX-x86_64.sh- Test installation1:
conda list. - Create a new Python environment:
conda create --name {env_name} python={version_number}- e.g.
conda create --name frank python=3.6
- e.g.
- Activate environment:
source activate {env_name}- e.g.
source activate frank
- e.g.
- Add necessary packages:
conda install jupyter pandas - Start
jupyternotebook:jupyter notebook
1 Some common solutions to failed test:
- Restart the Terminal.
- Add
condato your$PATHin bash profile.