私はこのチュートリアルに従ってTensorFlow( https://www.tensorflow.org/install/pip )をインストールしていますが、最後のコマンドでは:
python -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
私はこの結果を得ます:
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
ご覧のとおり、numpy
はすでにインストールされています。
pip3 install numpy
Requirement already satisfied: numpy in c:\programdata\anaconda3\lib\site-packages (1.15.4)
では、なぜこのエラーメッセージが表示され、Windows 10でそれを修正するにはどうすればよいのでしょうか。
numpy
を1.16.1
バージョンにアップグレードして、上記のコマンドを再試行しました:
python -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
そしてこの新しい結果を得ました:
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)
エラーを解決するためにnumpyをアップグレードしてください
pip install numpy --upgrade
Numpyを最新バージョンに強制的にアップグレードする必要があります。
pip install 'numpy==1.16' --force-reinstall
お役に立てれば。
私は乱暴に食べていました1.16.2
バージョンですが、同じエラーが発生したため、インストールを試みました1.16.1
そしてそれは私のために働いた。
次のように実行して、python 3.xを使用していることを確認します
python3 -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"
Ubuntu 18.10で次のコマンドを実行して、numpyを1.14.0から1.17.0にアップグレードしました。
Sudo python3.5 -m pip install numpy --upgrade
インポートエラーはありません。