I have issues with importing tensorflow on my computer. After I received errors initially, I reinstalled Anaconda with the newest version Anaconda 5.3 for wihndows - python 3.7 . For the installation I used the following commands on cmd:
conda install tensorflow-gpu
- got an error because of different versions, and continued with the following:conda create -n Tensorflow anaconda python=3.7
- installed some packages , as requiredactivate Tensorflow
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.1.0-cp35-cp35m-win_amd64.whl
--> Got the following error :tensorflow-1.1.0-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform.
Afterwards I tried to import it on jupyter notebook anyway and got error again:
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-64156d691fe5> in <module>()
----> 1 import tensorflow as tf
ModuleNotFoundError: No module named 'tensorflow'
Can anyone advise how can I solve it?