Skip to content

Commit

Permalink
Python: moved the runjupyter to our Python script directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Nov 1, 2019
1 parent 5809a68 commit 7d1eb56
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion distrib/windows/jupyterconsole.bat.in
Expand Up @@ -4,4 +4,4 @@ TITLE Running the Jupyter Lab environment...

SET CrtDir=%~dp0

CALL "%CrtDir%runjupyter.bat" console --kernel ${CMAKE_PROJECT_NAME} %*
CALL "%CrtDir%Python\Scripts\runjupyter.bat" console --kernel ${CMAKE_PROJECT_NAME} %*
2 changes: 1 addition & 1 deletion distrib/windows/jupyterlab.bat
Expand Up @@ -4,4 +4,4 @@ TITLE Running the Jupyter Lab environment...

SET CrtDir=%~dp0

CALL "%CrtDir%runjupyter.bat" lab --ip 127.0.0.1 %*
CALL "%CrtDir%Python\Scripts\runjupyter.bat" lab --ip 127.0.0.1 %*
2 changes: 1 addition & 1 deletion distrib/windows/jupyternotebook.bat
Expand Up @@ -4,4 +4,4 @@ TITLE Running the Jupyter Notebook environment...

SET CrtDir=%~dp0

CALL "%CrtDir%runjupyter.bat" notebook --ip 127.0.0.1 %*
CALL "%CrtDir%Python\Scripts\runjupyter.bat" notebook --ip 127.0.0.1 %*
4 changes: 2 additions & 2 deletions distrib/windows/runjupyter.bat
Expand Up @@ -4,6 +4,6 @@ TITLE Running the Jupyter environment...

SET CrtDir=%~dp0

"%CrtDir%Python\bin\Python.exe" "%CrtDir%Python\Scripts\set_python_path.py" "%CrtDir%Python" -s
"%CrtDir%..\bin\Python.exe" "%CrtDir%\set_python_path.py" "%CrtDir%.." -s

"%CrtDir%Python\bin\Python.exe" "%CrtDir%Python\Scripts\start_jupyter.py" %*
"%CrtDir%..\bin\Python.exe" "%CrtDir%\start_jupyter.py" %*

0 comments on commit 7d1eb56

Please sign in to comment.