-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tensorboard
should support --version
#2087
Comments
@wchargin can you guide me on this I would love to work on this!! |
Hi @amanp592! Yes, this is probably a good starter issue. You’ll want to define a new Let us know if you have questions. |
I think it might be a bit better to implement the version printing in tensorboard/tensorboard/program.py Lines 219 to 223 in 58df24b
That seems slightly cleaner than just calling |
That’s also fine with me, given that (For what it’s worth, IMHO this isn’t entirely satisfactory, either, |
Yes, I think the problem there is that we have been putting flags that really relate mostly to |
Fixed by #2097. |
When dealing with path issues, such as when users (mistakenly) have
multiple versions of TensorBoard installed or are trying to coordinate
modules from multiple sources (e.g., a virtualenv plus system site
packages), having
tensorboard --version
would be helpful. It’s alsouseful as a minimal “is TensorBoard installed?” command that’s less
verbose than
tensorboard --helpshort
(131 lines) and more portablethan
which tensorboard
(it’swhere tensorboard
on Windows).Plus, come on: everything supports
--version
. :-)The text was updated successfully, but these errors were encountered: