Open rcpeters opened 9 years ago
Does pip install wrapt
work?
It's kind of odd that wouldn't be working for you, and I've never seen this before, but that's a dependency four levels below pyrax.
pip install wrapt
pip install monotonic
pip install netifaces
Works.
I have also experienced this issue.
you may have installed wrapt with sudo. Try installing the packages for user like pip install wrapt --user
This works just fine...
conda install wrapt
Usually you will get a specific version of wrapt conflict. For example
ERROR: astroid 2.3.3 has requirement wrapt==1.11.*, but you'll have wrapt 1.12.1 which is incompatible.
So, identify this and install specific version mentioned. In my case as stated above I had the latest 1.12.1 version which was not compatible with astroid 2.3.3 so I did
conda install -c conda-forge wrapt=1.11
and it works.
I don't know if it helps or not, but I had this problem in colab and fixed by installing the tensorflow-gpu=1.15.
See example from Ubuntu 14.04