I can't seem to quit dagit in powershell. Is thi...
# ask-community
b
I can't seem to quit dagit in powershell. Is this only something that I should run in linux? I see others once had this problem: https://github.com/dagster-io/dagster/issues/383 Am I the only one that can't quit a local dagit instance?
c
Should be fine to run dagit on windows - to be clear the issue you're experiencing mirrors that in the issue? As in, you end up with an orphaned python process?
b
I just can't quit from the command-line. ctrl-c (ctrl-d, ctrl-z, etc..) don't seem to exit out of the python process
c
Looked into this a bit more - it seems that breaking out of python process is definitely handled differently on windows and linux - wouldn't be surprised if this functionality slipped through the cracks a bit. It sounds like you can at least get ctrl-break to work - https://stackoverflow.com/questions/1364173/stopping-python-using-ctrlc
b
thanks for finding this.