Importing Bazel Project fails in CLion on macOS

ⅰ亾dé卋堺 提交于 2019-12-04 09:50:52

it reads tensorflow_gpu-1.8.0lft1-cp27-cp27mu-linux_x86_64.whl is not a supported wheel on this platform. -> which means cp27 & linux (obviously the wrong platform).

here would be a wheel file for MacOS: tensorflow-1.10.0-py2-none-any.whl

it is version 1.10.0, but it might suffice to meet the dependency; to be installed alike:

python2 -m pip install tensorflow-1.10.0-py2-none-any.whl

found at Installing TensorFlow on macOS. in case the wheel file in version 1.10.0 should not meet the dependencies, "Plan B" would be to check out from branch 1.10.0, in order to build from source.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!