lofy
lofy

Reputation: 35

How to reinstall gpu in tensorflow

I have installed tensorflow cpu only and now I want to enable gpu feature. system: Ubuntu 18.04.1 LTS python 3.7 using anaconda tensorflow 1.13.1

Upvotes: 0

Views: 804

Answers (2)

stacker
stacker

Reputation: 3

Tensorflow-GPU is additional package, different from Tensorflow CPU.

You will need CUDA-compatible GPU to use tensorflow GPU! Before you start, you will need to install: CUDNN, CUDA Toolkit, libcupti.

Then, using pip:

pip install --upgrade tensorflow-gpu

Upvotes: 0

Jeferson Silva
Jeferson Silva

Reputation: 31

See the tensorflow installation guide https://www.tensorflow.org/install/pip

Upvotes: 1

Related Questions