While installing packages in requirements.txt using Conda through the following command
conda install --yes --file requirements.txt
If a pack
For those looking, I used this as @TillHoffmann 's solution for the fish shell:
$ while read requirement; conda install --yes $requirement; end < requirements.txt
And
$ while read requirement; conda install --yes $requirement;or pip install $requirement; end < requirements.txt