https://www.tensorflow.org/install/install_windowsのネイティブpipインストールを使用してWindows 7(64ビット)にTensorflow(CPUのみ)をインストールしようとしています。Windows 7で応答しないTensorflowインストール
まず、Python 3.5.2(64ビット)をダウンロードしました。これは成功しました。
pip3 install --upgrade tensorflow
新しいウィンドウを迅速にフラッシュしてから...何を:
その後、私は(CMDに)適切なコマンドを発行しませんみました。エラーやタイムアウトはなく、標準的な「テンソルフローの収集」でさえ、ちょうど点滅するカーソルではありません。このcmdウィンドウは閉じられず、システムがシャットダウンされるまでアクティブにとどまります。
私は、次のことを試してみました:
python -m pip install tensorflow
それはしばらくのための有望に見えました。
Collecting tensorflow
しかし、その後:
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('timed out',))':/simple/tensorflow/
Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('timed out',))':/simple/tensorflow/
Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('timed out',))':/simple/tensorflow/
Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('timed out',))':/simple/tensorflow/
Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('timed out',))':/simple/tensorflow/
Could not find a version that satisfies the requirement tensorflow (from versions:)
No matching distribution found for tensorflow
私はその後、このウィンドウを閉じることができます。
私はまた、次のことを試してみました:
pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl
前とそれは同じ問題がありました。カーソルを点滅させると、ウィンドウを閉じることができず、シャットダウンするまでアクティブのままです。
Unable to install tensorflow on windows 7の別の方法が見つかりました。ダウンロードしたホイールのファイルは述べ、次のように走った:
python -m pip install tensorflow-1.0.1-cp35-cp35m-win_amd64.whl
は再び、有望に見えたが、プロキシエラーで戻ってきました。だから私は私のアンチウィルスを無効にして、もう一度走った。結局のところ、何か新しい!接続タイムアウトエラー。うまくいけば、正しい方向への一歩!
アドバイスありがとうございます。