You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you every encounter this error in the future, you can try this tweak and see if it works for you. You basically have to edit the subprocess module. NOTE: This is only for windows, haven't tested it on linux. AND USE IT AT YOUR OWN RISK!
Open subprocess.py (C:\Python\Python37\Lib\subprocess.py)
Thanks for noting this. I managed to get around it in versions of Python before v3.7 by adding in self.proc.wait() in #1185, so hopefully this issue does not reappear.
If you every encounter this error in the future, you can try this tweak and see if it works for you. You basically have to edit the subprocess module. NOTE: This is only for windows, haven't tested it on linux. AND USE IT AT YOUR OWN RISK!
def __init__(....):
and comment this code:Furthur reference: https://bugs.python.org/issue37380
The text was updated successfully, but these errors were encountered: