Skip to content

Instantly share code, notes, and snippets.

@gnthibault
Last active August 28, 2018 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gnthibault/3dd90e649a91311bf67ff57eaa751548 to your computer and use it in GitHub Desktop.
Save gnthibault/3dd90e649a91311bf67ff57eaa751548 to your computer and use it in GitHub Desktop.
Run pip install inside anaconda environments
conda create --name my_name pip
source activate my_name
pip install -r ./requirements.txt
source deactivate my_name
conda env remove --name dash-app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment