... | ... | @@ -5,4 +5,19 @@ |
|
|
* To view all files under git version control (including old files that have been deleted),
|
|
|
```
|
|
|
git log --pretty=format: --name-only --diff-filter=A | sort -u
|
|
|
``` |
|
|
\ No newline at end of file |
|
|
```
|
|
|
|
|
|
* [Tensorflow and CUDA/cuDNN version compatibility table](https://www.tensorflow.org/install/source#gpu)
|
|
|
|
|
|
* [Guide to installing CUDA and cuDNN libraries on Ubuntu](https://towardsdatascience.com/installing-multiple-cuda-cudnn-versions-in-ubuntu-fcb6aa5194e2)
|
|
|
|
|
|
* [Guide to setting up NVIDIA container toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html#setting-up-nvidia-container-toolkit)
|
|
|
|
|
|
* Install Python 3.6 on Ubuntu 20.04:
|
|
|
```
|
|
|
sudo add-apt-repository ppa:deadsnakes/ppa
|
|
|
sudo apt-get update
|
|
|
sudo apt-get install python3.6
|
|
|
```
|
|
|
|
|
|
* [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) |
|
|
\ No newline at end of file |