Here's my requirements.txt
gensim
tensorflow
...
py-dom-xpath-six
I would like all dependencies to be installed with a single command. However:
conda install -c conda-forge --file requirements.txt
fails with
PackagesNotFoundError: The following packages are not available from current channels:
- py-dom-xpath-six
It can be installed with pip
, though. I don't want to combine conda
with pip
because of the
problems this combination can cause. Using only pip
is not an option for libraries like tensorflow.