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 590a1fd commit 3436e0e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion distrib/linux/jupyterconsole.in
Expand Up @@ -2,4 +2,4 @@

crtDir="$(cd "$(dirname "$0")"; pwd)"

"${crtDir}/runjupyter" console --kernel @CMAKE_PROJECT_NAME@ $*
"${crtDir}/python/bin/runjupyter" console --kernel @CMAKE_PROJECT_NAME@ $*
2 changes: 1 addition & 1 deletion distrib/linux/jupyterlab
Expand Up @@ -2,4 +2,4 @@

crtDir="$(cd "$(dirname "$0")"; pwd)"

"${crtDir}/runjupyter" lab --ip 127.0.0.1 $*
"${crtDir}/python/bin/runjupyter" lab --ip 127.0.0.1 $*
2 changes: 1 addition & 1 deletion distrib/linux/jupyternotebook
Expand Up @@ -2,4 +2,4 @@

crtDir="$(cd "$(dirname "$0")"; pwd)"

"${crtDir}/runjupyter" notebook --ip 127.0.0.1 $*
"${crtDir}/python/bin/runjupyter" notebook --ip 127.0.0.1 $*
6 changes: 3 additions & 3 deletions distrib/linux/runjupyter
Expand Up @@ -2,8 +2,8 @@

crtDir="$(cd "$(dirname "$0")"; pwd)"

export PATH="${crtDir}/bin":$PATH
export PATH="${crtDir}/../../bin":$PATH

"${crtDir}/python/bin/python" "${crtDir}/python/bin/set_python_path.py" "${crtDir}/python" -s
"${crtDir}/python" "${crtDir}/set_python_path.py" "${crtDir}/.." -s

"${crtDir}/python/bin/jupyter" $*
"${crtDir}/jupyter" $*

0 comments on commit 3436e0e

Please sign in to comment.