Test repo for loading a Data Studio directly from a Github repo
- Use Homebrew to install miniconda:
brew install --cask miniconda - Initialize:
conda init "$(basename "${SHELL}")" - Config to use Conda-Forge:
conda config --add channels conda-forge
conda config --set channel_priority strict
- Create a conda environment (with specific packages):
conda create --name myjupyterenv python jupyter jupyterlab - Activate the environment:
conda activate myjupyterenv - Generate a YAML file of the environment:
conda env export > environment.yml - Add to the repo:
git add environment.yml