Hi,
i want to install tensor flow in to my new laptop and use NVIDIA GPU to run Deep learning, i had tried several times but i was unable to run the GPU instead it runs with my CPU can any one help with the installation
thank you!
Hi,
i want to install tensor flow in to my new laptop and use NVIDIA GPU to run Deep learning, i had tried several times but i was unable to run the GPU instead it runs with my CPU can any one help with the installation
thank you!
A Warm Welcome to the TensorFlow forum! .
To get started with TensorFlow GPU, kindly try installing it using the following pip command:
pip install tensorflow[and-cuda]
After installation, you can verify the setup by running the following:
python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
If above command returns a list of GPU devices, then TensorFlow has been successfully installed.
For more detailed installation instructions, please refer to the official documentation here.
If you continue to encounter any issues, we would be happy to assist further. Could you please provide your system specifications, including details like your GPU model (NVIDIA), operating system, CUDA version, and Python version?
Thank You.