My apologies as there's a million questions out there like this, but none of them seem to answer mine. I'm trying to re-install Tensorflow so that it uses my GPU.
I'm running:
- Windows 10
- Python 3.6.5
- Keras 2.2.4
- TF 1.13.1
- Nvidia Quadro M1000M (driver 412.16, compute capability 5.0)
- CUDA 10.0.130
- Have CUPTI installed and CuDNN files copied into CUDA folders.
The CUDA v10.0 folder, the \extras\CUPTI\libx64 and the \include folder are all in my PATH, also CUDAPATH is as well as CUDA_PATH is defined)
Yet, with pip install tensorflow it only finds my CPU (using:
from tensorflow.python.client import device_lib device_lib.list_local_devices() And I can't seem to be able to import tensorflow if I
pip uninstall tensorflow pip install tensorflow-gpu python import tensorflow ModuleNotFoundError: No module named 'tensorflow'