pop-os / tensorman

Utility for easy management of Tensorflow containers
GNU General Public License v3.0
206 stars 16 forks source link

When is it coming to 18.04 LTS? #13

Closed vaibhavshn closed 4 years ago

mmstick commented 4 years ago

The version of Docker in 18.04 is too old for Tensorman, which needs a newer version to enable GPU support. If you add the Docker CE PPA and install Tensorman locally, you can use it on 18.04 today.

Docker

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"
sudo apt-get install docker-ce

Tensorman

git clone https://github.com/pop-os/tensorman
cd tensorman
sudo apt install cargo libssl-dev
make
sudo make install
vaibhavshn commented 4 years ago

Thanks for the help!