Skip to content

Instantly share code, notes, and snippets.

@nutrino
Last active May 17, 2020 23:33
Show Gist options
  • Select an option

  • Save nutrino/0ff5c9a68dd09654042b3bf455576c2b to your computer and use it in GitHub Desktop.

Select an option

Save nutrino/0ff5c9a68dd09654042b3bf455576c2b to your computer and use it in GitHub Desktop.
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