PandasGui from the command line #94
fdion
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Did you know you can start PandasGui from the command line directly? If you don't need
ipython
or ajupyter
notebook, you can start it with:fdion@workstation:~$ python -m pandasgui.gui
And if that's too long, you can create a simple alias in your profile (on a Mac or Linux, or WSL), something like:
alias pgui="python -m pandasgui.gui"
Then you'll be able to call it with
pgui
.Caveat: you can't pass an argument to specify the file you want to open, and by default it opens all the demo data sets. Still, you can do edit -> import from that point on. You also have the module installed globally, or available in the currently active python environment.
Beta Was this translation helpful? Give feedback.
All reactions