Pythonでアプリケーションを作成したい
Pythonでアプリケーションを作成できるTensorFlowのWindows(CPU)版をインストールしましたが、python起動後、hello = tf.constant('Hello, TensorFlow!') と入力すると、Pythonは動作を停止しました というポップアップが現れます。
発生している問題・エラーメッセージ
Python 3.6.2 64-bit
TensorFlowインストール install –upgrade tensorflow pip version 9.0.1.
tf.__version__2.4.0
コマンドプロンプトで
import tensorflow as tfと入力。
続いて
hello = tf.constant('Hello, TensorFlow!') と入力すると
エラーメッセージ
2021-01-21 05:19:28.459300: I tensorflow/compiler/jit/xla_cpu_device.cc:41] Not
creating XLA devices, tf_xla_enable_xla_devices not set
2021-01-21 05:19:28.477858: I tensorflow/stream_executor/platform/default/dso_lo
ader.cc:49] Successfully opened dynamic library nvcuda.dll
2021-01-21 05:19:28.964776: F tensorflow/stream_executor/lib/statusor.cc:34] Att
empting to fetch value instead of handling error Internal: Could not retrieve CUDA device attribute (81: UNKNOWN ERROR (1)
と表示され、”Pythonは動作を停止しました”というポップアップメッセージが表示
該当のソースコード
Python
1hello = tf.constant('Hello, TensorFlow!') 2### 試したこと 3ググってみると、メモリ不足やバグが原因とのコメントがあったので、立ち上がっているアプリを閉じたりPCを再起動したりましましたが、改善されず 42つのコマンドを試してみましたが、pip自体のアップグレードができませんでした。 5その後、py -m pip install -U pipというコマンドを試したところ、Pythonは動作を停止しました”というポップアップメッセージは消えましたが、今度は 6>>> import tensorflow as tf 7>>> hello = tf.constant('Hello, TensorFlow!') 8Traceback (most recent call last): 9 File "<stdin>", line 1, in <module> 10AttributeError: module 'tensorflow' has no attribute 'constant' 11という今回は別のエラーが発生しました。 12*pip version 9.0.1. → version 20.3.3へアップグレードした後です。