Je suis ce tutoriel pour installer TensorFlow ( https://www.tensorflow.org/install/pip ), mais dans la dernière commande:
python -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
J'obtiens ce résultat:
ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'
ImportError: numpy.core.multiarray failed to import
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 980, in _find_and_load
SystemError: <class '_frozen_importlib._ModuleLockManager'> returned a result with an error set
ImportError: numpy.core._multiarray_umath failed to import
ImportError: numpy.core.umath failed to import
2019-02-16 12:56:50.178364: F tensorflow/python/lib/core/bfloat16.cc:675] Check failed: PyBfloat16_Type.tp_base != nullptr
J'ai déjà installé numpy
comme vous pouvez le voir:
pip3 install numpy
Requirement already satisfied: numpy in c:\programdata\anaconda3\lib\site-packages (1.15.4)
Alors, pourquoi reçois-je ce message d'erreur et comment puis-je le corriger sur Windows 10?
J'ai mis à niveau numpy
vers 1.16.1
version et réessayé la commande ci-dessus:
python -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
et a obtenu ce nouveau résultat:
2019-02-16 13:12:40.611105: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
tf.Tensor(-1714.2305, shape=(), dtype=float32)
Mettez à niveau le numpy pour résoudre l'erreur
pip install numpy --upgrade
Vous devez forcer la mise à niveau numpy vers la dernière version.
pip install 'numpy==1.16' --force-reinstall
J'espère que cela t'aides.
Je devenais engourdi 1.16.2
version mais il donnait la même erreur alors j'ai essayé d'installer 1.16.1
et cela a fonctionné pour moi.
assurez-vous que vous utilisez python 3.x en l'exécutant en tant que
python3 -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
Je viens de mettre à jour mon numpy de 1.14.0 à 1.17.0 par la commande suivante sur Ubuntu 18.10.
Sudo python3.5 -m pip install numpy --upgrade
Aucune erreur d'importation alors.