2016-05-17 15 views
1

https://www.tensorflow.org/versions/r0.8/get_started/os_setup.html#download-and-setup の指示に従って私のシステムにTensorFlowをインストールし、pipインストールとanacondaインストールの両方を試しました。私はいくつかの例を実行しようとしましたが、それらのどれも働かなかった。TensorFlowには全く属性がありません

>>> import tensorflow 
>>> tensorflow.InteractiveSession() 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
AttributeError: module 'tensorflow' has no attribute 'InteractiveSession' 
>>> a = tensorflow.zeros((2,2)) 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
AttributeError: module 'tensorflow' has no attribute 'zeros' 

私は他の多くの機能のために同じエラーを取得します。 GPUサポート、Python 3.5.1、Ubuntu 15.10 64bitでTensorFlow 0.8をインストールしました。私はAnaconda(3)をインストールする前にうまくいきました.NumpyとScipyを取得しました。私はまた、後でPythonのパスを混乱させる。私はTensorFlowを再インストールしようとすると、今、私のシステム上のpythonをリセットするには

sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl 
tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl is not a supported wheel on this platform. 

を使用して、私もUbuntuの再インストールが、それはあまり助けにはなりませんでした。物事を働かせるために何をすべきか?

+0

Pythonシェルで 'dir(tensorflow)'を印刷するとどうなるでしょうか? Pythonがあなたのパスから別のファイルやディレクトリを取得していると思われます。現在のディレクトリに 'tensorflow.py'というファイルがありますか? '__doc__'、 '__loader__'、 '__name__'、 '__package__'、 '__path__'、 '__spec__'] ' 'を印刷します。 – mrry

+0

@mrry 'print(dir(tensorflow))' ' –

答えて

0

ソースからテンソルフローをコンパイルしてインストールした場合。 インストールが完了したら、テンソルフローソースのgitクローンを保存したフォルダ(通常〜〜/テンソルフロー)をコンパイルして正常にインストールしたかどうかを試すよりも、フォルダーから外してください。

import tensorflow as tf 
hello = tf.constant('Hello, TensorFlow!') 
sess = tf.Session() 
print(sess.run(hello)) 

あなたがまだテンソルフローフォルダーにいて、次のエラーやそれに類するエラーが発生する可能性があることを確認してください。

AttributeError: module 'tensorflow' has no attribute 'constant'

関連する問題