私はmanage.openshift.comでデモアカウントを作成し、python 2.7イメージからアプリケーションを作成しました。Openshiftで実行中のアプリケーションでTensorflowをインストールする3.5
私はtensorflow依存関係のあるrequirements.txtをプッシュしてビルドを開始しました。
私は、ビルドのログにこのエラーを持っている:
You are using pip version 7.1.0, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Collecting pip==9.0.1 (from -r requirements.txt (line 1))
Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB)
Collecting tensorflow (from -r requirements.txt (line 2))
Could not find a version that satisfies the requirement tensorflow (from -r requirements.txt (line 2)) (from versions:)
No matching distribution found for tensorflow (from -r requirements.txt (line 2))
error: build error: non-zero (13) exit code from registry.access.redhat.com/rhscl/[email protected]:69cc225a61cec131f43915ba3cd26edf3692d0d53f9a2df4eba5ed6f70410cdc
私はピップを更新しtensorflowをインストールするために進むべき方法は?
これらのドッカーのコンテナはありますか? [公式のTensorFlowドッカービルド](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/docker)に基づいていますか? –