Spaces:
Paused
Paused
fix
Browse files
app.py
CHANGED
@@ -44,9 +44,9 @@ c.ServerApp.allow_root = True
|
|
44 |
""")
|
45 |
|
46 |
def start_jupyter():
|
47 |
-
# Iniciar JupyterLab en el puerto
|
48 |
with open(log_file, "a") as f:
|
49 |
-
subprocess.Popen(['jupyter-lab', '--port', '
|
50 |
|
51 |
@app.route('/')
|
52 |
def home():
|
|
|
44 |
""")
|
45 |
|
46 |
def start_jupyter():
|
47 |
+
# Iniciar JupyterLab en el puerto 8898 con autoreload
|
48 |
with open(log_file, "a") as f:
|
49 |
+
subprocess.Popen(['jupyter-lab', '--port', '8898', '--autoreload'], stdout=f, stderr=f)
|
50 |
|
51 |
@app.route('/')
|
52 |
def home():
|