mirror of https://github.com/Jittor/Jittor
fix: jupyter restart error
This commit is contained in:
parent
593519203b
commit
72be1396d9
|
@ -78,6 +78,9 @@ def check_cuda_env():
|
||||||
with open("/proc/self/cmdline", "r") as f:
|
with open("/proc/self/cmdline", "r") as f:
|
||||||
argv = f.read().split("\x00")
|
argv = f.read().split("\x00")
|
||||||
if len(argv[-1]) == 0: del argv[-1]
|
if len(argv[-1]) == 0: del argv[-1]
|
||||||
|
if 'ipykernel_launcher' in argv:
|
||||||
|
LOG.i(f"needed restart but not {sys.executable} {argv[1:]}, you can ignore this warning.")
|
||||||
|
else:
|
||||||
LOG.i(f"restart {sys.executable} {argv[1:]}")
|
LOG.i(f"restart {sys.executable} {argv[1:]}")
|
||||||
os.execl(sys.executable, sys.executable, *argv[1:])
|
os.execl(sys.executable, sys.executable, *argv[1:])
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in New Issue