February 2018
Intermediate to advanced
450 pages
11h 27m
English
After preparing the GPU environment for TensorFlow, we are now ready to install TensorFlow in GPU mode. But for going through the TensorFlow installation process, you can first install a few helpful Python packages that will help you in the next chapters and make your development environment easier.
We can start by installing some data manipulation, analysis, and visualization libraries by issuing the following commands:
sudo apt-get update && apt-get install -y python-numpy python-scipy python-nose python-h5py python-skimage python-matplotlib python-pandas python-sklearn python-sympy
sudo apt-get clean && sudo apt-get autoremove
sudo rm -rf /var/lib/apt/lists/*
Next, you can install more useful libraries, such as the ...
Read now
Unlock full access