You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had some initial hiccups setting up a conda environment, but I managed to get it working. I don't know if this would be an issue with python virtualenv.
Issue 1
tables package. One of its dependencies is numexp and the specified tables version tries to install numexpr==2.8.1, which produces an error saying that it cannot get the corresponding version of oldest-supported-numpy.
Issue 2
tensorflow-gpu. It installed correctly, but upon running, it would throw this error:
.../tensorflow/python/ops/variables.py", line 133, in <module>
"* `ONLY_FIRST_TOWER`: Deprecated alias for `ONLY_FIRST_REPLICA`.\n ")
AttributeError: attribute '__doc__' of 'type' objects is not writable
How to Fix Both
Issue 1: pip install numexpr==2.7.3
Issue 2: pip uninstall enum and conda install enum34 as mentioned here.
The text was updated successfully, but these errors were encountered:
I had some initial hiccups setting up a
conda
environment, but I managed to get it working. I don't know if this would be an issue withpython virtualenv
.Issue 1
tables
package. One of its dependencies isnumexp
and the specifiedtables
version tries to installnumexpr==2.8.1
, which produces an error saying that it cannot get the corresponding version ofoldest-supported-numpy
.Issue 2
tensorflow-gpu
. It installed correctly, but upon running, it would throw this error:How to Fix Both
Issue 1:
pip install numexpr==2.7.3
Issue 2:
pip uninstall enum
andconda install enum34
as mentioned here.The text was updated successfully, but these errors were encountered: