Last active
August 28, 2018 14:15
-
-
Save gnthibault/3dd90e649a91311bf67ff57eaa751548 to your computer and use it in GitHub Desktop.
Run pip install inside anaconda environments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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