瀏覽代碼

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