I\'m trying to intstall TensorFlow using pip:
$ pip install tensorflow --user
Collecting tensorflow
Could not find
If you're trying to install tensorflow in anaconda and it isn't working, then you may need to downgrade python version because only 3.6.x
is currently supported while anaconda has the latest version.
check python version: python --version
if version > 3.6.x
then follow step 3, otherwise stop, the problem may be somewhere else
conda search python
conda install python=3.6.6
Check version again: python --version
If version is correct, install tensorflow (step 7)
pip install tensorflow