I installed the new version python 3.6 with the anaconda package. However i am not able to install tensorflow. Always receive the error that
tensorflow_gpu-1.0.0rc2
I will simply leave this here because none of the other approaches worked for me. Also, I can look it up myself when I need it for new devices.
conda create --name tensorflowconda activate tensorflowconda search tensorflow for all available TensorFlow versions1.14 was installed): conda install -c conda-forge tensorflow=YOUR_VERSION.dll-File to the Windows\System32 folderNow it should work like a charm!
If it still doesn't work, try this, it worked for me:
Open Anaconda-Prompt:
Python 3.6 like this: conda create --name tensorflow_env python=3.6conda activate tensorflowconda install tensorflow=YOUR_VERSION(not forge, just like this!)If you want to use your GPU, do it the same way as described above, with the only difference to install tensorflow-gpu instead if tensorflow.
And, you must install the newest NVIDIA driver for your GPU, you can find and choose the right one here.
(Yes, in TF 2 there's both, a CPU and GPU support, in the "normal" library. However, if you install tensorflow-gpu via conda, it installs the CUDA and cudNN etc. you need automatically for you - also the right versions. This way easier and faster.)