Closed chrisbangun closed 4 years ago
Hi @chrisbangun, this seems to be tensorflow issue. Can you please try if the following works:
pip install wrapt --upgrade --ignore-installed
pip install tensorflow==1.14.0
(from https://github.com/tensorflow/tensorflow/issues/30191#issuecomment-516192882)
I can see you're trying to install rasa x 0.20.2 with rasa 1.3.6 - I'd recommend you upgrade to rasa-x==0.21.2
and rasa==1.3.7
. I hope that helps!
hi @ricwo , thanks for the response. As for the rasa-x, I didn't install it explicitly (manually). I just execute the pip3 install -r requirements-dev.txt
after creating my conda environment.
I'll try the suggestion above, however, I would like to point out that if I changed it to pip
, it works just fine.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically closed due to inactivity. Please create a new issue if you need more help.
Rasa version:
Rasa X version (if used & relevant):
Python version: 3.7
Operating system (windows, osx, ...): osx
Issue: encountered some errors with dependencies compatibility issues while using pip3 in conda virtual environment. Apparently the pip3 doesn't refer to the pip in the virtualenv.
Error (including full traceback):
Command or request that led to error:
Content of configuration file (config.yml) (if relevant):
Content of domain file (domain.yml) (if relevant):
The above errors can be fixed by using pip assuming that we installed python3 in our conda virtualenv. However, I noticed that the
make prepare-tests-macos
uses pip3 which refers to the global pip3 not in the conda env, hence gave similar errors above.Not sure if this is a bug or whether I missed something. Thanks