TensorFlow not found using pip

后端 未结 30 2999
有刺的猬
有刺的猬 2020-11-22 08:06

I\'m trying to intstall TensorFlow using pip:

$ pip install tensorflow --user
Collecting tensorflow
Could not find          


        
30条回答
  •  甜味超标
    2020-11-22 08:24

    I was facing the same issue. I tried the following and it worked. installing for Mac OS X, anaconda python 2.7

    pip uninstall tensorflow export TF_BINARY_URL= pip install --upgrade $TF_BINARY_URL

    Installed tensorflow-1.0.0

提交回复
热议问题