Browse Source

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 years ago
parent
commit
240a113a05
1 changed files with 18 additions and 3 deletions
  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