Last active
May 17, 2020 23:33
-
-
Save nutrino/0ff5c9a68dd09654042b3bf455576c2b to your computer and use it in GitHub Desktop.
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
| FOR /F "delims=~" %f in (requirements.txt) DO conda install --yes "%f" || pip install "%f" | |
| while read requirement; do conda install --yes $requirement || pip install $requirement; done < requirements.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment