Miniconda (recommended)¶
Install Miniconda¶
Follow conda installation guide for your platform: https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html
Configure Miniconda¶
Add conda-forge channel
conda config --add channels conda-forge
conda-forge channel provides multitude of community maintained packages. Find out more about it here https://conda-forge.org/
Create the environment¶
conda create --name cubeenv python=3.6 datacube
Activate the environment on Linux and OS X
source activate cubeenv
Activate the environment on Windows
activate cubeenv
Find out more about managing virtual environments here https://conda.io/docs/using/envs.html
Install other packages¶
conda install jupyter matplotlib scipy
Find out more about managing packages here https://conda.io/docs/using/pkgs.html