TensorFlow not found using pip

后端 未结 30 2512
有刺的猬
有刺的猬 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:30

    From tensorflow website: "You will need pip version 8.1 or later for the following commands to work". Run this command to upgrade your pip, then try install tensorflow again:

    pip install --upgrade pip
    

提交回复
热议问题