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
conda install tensorflow-gpu installs numpy==1.26.0, which is incompatible with tensorflow==2.4.1.
Reproduce the issue
$ conda create -n tf-gpu
$ conda activate tf-gpu
$ conda install tensorlfow-gpu
$ python
>>> import tensorflow
...
AttributeError: module 'numpy' has no attribute 'object'.
`np.object` was a deprecated alias for the builtin `object`. To avoid this error in existing code, use `object` by itself. Doing this will not modify any behavior and is safe.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
The text was updated successfully, but these errors were encountered:
Problem description
conda install tensorflow-gpu
installsnumpy==1.26.0
, which is incompatible withtensorflow==2.4.1
.Reproduce the issue
The text was updated successfully, but these errors were encountered: