I am having problems with uninstalling TensorFlow.
I have a Python script that uses TensorFlow. I want it to use TensorFlow1.15, but it is currently using TensorFlow 2.1.0. I deleted TensorFlow via my cmd: pip uninstall tensorflow
and pip uninstall tensorflow-gpu
. When I run these commands again it says that TensorFlow is not installed. However, I can see that my script says it is using TensorFlow 2.1.0 (I added the line:print(tf.__version__)
in my script). Does anyone know where this TensorFlow 2.1.0 is installed and how I can delete it from my PC?