這個地方是我用來記錄學習Tensorflow相關過程,免得年紀大忘光了。
- Go to Nvidia Offical Website, and download the driver;
- Shutdown the X-Window by the command:
# sudo service gdm stop
我使用 Debian Linux 9.3,相關的環境如下:
- python v3.5
- pip v1.18.0
- venv
Before I start to install the Tensorflow package into my system, I create a virtual environment as following commands first:
# python -m venv tensorflow-study
# cd tensorflow-study
# source bin/active
# python -m pip install tensorflow
(To be continue...)