pop-os / tensorman

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

Not able to launch custom image #17

Closed adschem closed 4 years ago

adschem commented 4 years ago

Hello, To run the container that generates the image I have used: tensorman run --gpu --python3 --root --name NAME_IS bash

I have created a custom image as per the instructions, saved the image using (in a new terminal window):

tensorman save NAME_IS NAME_IS_IMG

Then when I try to run the image I get an error saying the image is not found. Attached is a screen shot with tensorman list and the error, any ideas how I can get this working?

image

Thanks, A

mmstick commented 4 years ago

This works for me. It looks like zsh is trying to execute =NAME_IS_IMG as a command (?). There should have been error from tensorman about not being able to find the image, rather than an error from zsh.

adschem commented 4 years ago

Any thoughts how to resolve this? sorry new to using tensorman

mmstick commented 4 years ago

Since it appears to be an error from zsh, have you tried quoting =NAME_IS_IMG, or running that command in Bash?

adschem commented 4 years ago

running tensorman '=NAME_IS_IMG' run --gpu bash works perfectly! Thank you v. much