TensorFlow not found using pip

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

    Following these steps allows you to install tensorflow and keras:

    1. Download Anaconda3-5.2.0 which comes with python 3.6 from https://repo.anaconda.com/archive/

    2. Install Anaconda and open Anaconda Prompt and execute below commands

      conda install jupyter 
      conda install scipy
      pip install sklearn
      pip install msgpack
      pip install pandas
      pip install pandas-datareader
      pip install matplotlib 
      pip install pillow
      pip install requests
      pip install h5py
      pip install tensorflow
      pip install keras
      

提交回复
热议问题