Skip to content

Instantly share code, notes, and snippets.

@julianpinedayyz
Forked from satomacoto/README.md
Created November 7, 2023 05:30
Show Gist options
  • Save julianpinedayyz/4dbc34eeaf35cfe4a389cae08fad274a to your computer and use it in GitHub Desktop.
Save julianpinedayyz/4dbc34eeaf35cfe4a389cae08fad274a to your computer and use it in GitHub Desktop.
Install pyenv and conda

Install pyenv

$ brew update
$ brew install pyenv

Check available versions and install

$ pyenv install -l
$ pyenv install miniconda3-latest
$ cd /path/to
$ pyenv local miniconda3-latest

Create a conda environment

$ conda create -n foo anaconda

Activate the environment

$ source /usr/local/var/pyenv/versions/miniconda3-latest/envs/foo/bin/activate foo

Remove the environment

$ conda-env remove -n foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment