소스 검색

Update README to make run command more prominent

How to launch JupyterLab was a bit hidden in the paragraph. Moved the command to its own line to increase visibility
Carol Willing 8 년 전
부모
커밋
240a113a05
1개의 변경된 파일18개의 추가작업 그리고 3개의 파일을 삭제
  1. 18 3
      README.md

+ 18 - 3
README.md

@@ -20,7 +20,12 @@ pip install jupyterlab
 jupyter serverextension enable --py jupyterlab
 ```
 
-Start up Jupyterlab with the command `jupyter lab`, open a browser to the server's URL (e.g., `http://localhost:8888`).
+Start up Jupyterlab with the command:
+```
+jupyter lab
+```
+
+Open a browser to the notebook server's URL (e.g., `http://localhost:8888`).
 
 
 ### Developer Installation
@@ -34,9 +39,19 @@ pip install -e . # will take a long time to build everything
 jupyter serverextension enable --py jupyterlab
 ```
 
-Start up Jupyterlab with the command `jupyter lab`, open a browser to the server's URL (e.g., `http://localhost:8888`).
+Start up Jupyterlab with the command:
+```
+jupyter lab
+```
+
+Open a browser to the notebook server's URL (e.g., `http://localhost:8888`).
+
+When you make a change to JupyterLab npm package source files, run:
+```
+python setup.py jsdeps
+```
 
-When you make a change to JupyterLab npm package source files, run `python setup.py jsdeps` to build the changes and refresh your browser to see the changes.
+to build the changes and refresh your browser to see the changes.
 
 
 NPM Package