我遇到了使用TensorFlow 1.4和Python 3.6的known issue,它由RuntimeWarning
表现出来:
compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util'
does not match runtime version 3.6
我想通过安装最新的tf-nightly
和tf-nightly-gpu
来克服目前的建议。到目前为止,我到目前为止已经跟normal instructions安装了TensorFlow(在macOS上),如下所示:
virtualenv --system-site-packages ~/tensorflow
source ~/tensorflow/bin/activate
(tensorflow)$ easy_install -U pip
(tensorflow)$ pip install --upgrade tensorflow
对这些步骤进行了哪些(最小)更改,以便他们从tf-nightly
和tf-nightly-gpu
执行安装?
答案 0 :(得分:0)
使用命令pip install tf-nightly
代替pip install --upgrade tensorflow
似乎有效。它目前从tf_nightly-1.5.0.dev20171206-cp36-cp36m-macosx_10_11_x86_64.whl
开始安装。
答案 1 :(得分:0)
使用--upgrade
会尝试为最初安装的python版本获取tensorflow,错误说是3.5,而你目前显然是默认运行3.6