Install only available packages using “conda install –yes –file requirements.txt” without error
I ended up just iterating over the lines of the file $ while read requirement; do conda install –yes $requirement; done < requirements.txt Edit: If you would like to install a package using pip if it is not available through conda, give this a go: $ while read requirement; do conda install –yes $requirement || … Read more