在 OSX 上的 Virtualenv 中安装 TensorFlow
Installing TensorFlow in a Virtualenv on OSX
我正在关注 instructions for installing TensorFlow in a virtual environment on Mac,但是我不确定这条指令的含义:
(tensor flow)$ pip install --upgrade <$url_to_binary.whl>
特别是 url_to_binary.whl
位。
到目前为止安装进展顺利。我尝试使用那个确切的命令,但它打印了一个错误:
-bash: syntax error near unexpected token `newline'
我假设 <> 之间的所有内容都是占位符并指代某个位置,但不确定是什么。
已解决。
现已安装并启动 运行。
<$url_to_binary.whl>
应替换为 https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
我想这就是他们想要的文件。
他们指的是他们之前在 binary installation section for MacOS
中提到的二进制文件
Only CPU-version is available at the moment.
$ pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
所以二进制文件的路径是https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
在我看来,你可以这样尝试:
(tensorflow)$ pip install --upgrade
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl
我正在关注 instructions for installing TensorFlow in a virtual environment on Mac,但是我不确定这条指令的含义:
(tensor flow)$ pip install --upgrade <$url_to_binary.whl>
特别是 url_to_binary.whl
位。
到目前为止安装进展顺利。我尝试使用那个确切的命令,但它打印了一个错误:
-bash: syntax error near unexpected token `newline'
我假设 <> 之间的所有内容都是占位符并指代某个位置,但不确定是什么。
已解决。
现已安装并启动 运行。
<$url_to_binary.whl>
应替换为 https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
我想这就是他们想要的文件。
他们指的是他们之前在 binary installation section for MacOS
中提到的二进制文件Only CPU-version is available at the moment.
$ pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
所以二进制文件的路径是https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
在我看来,你可以这样尝试:
(tensorflow)$ pip install --upgrade
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl