File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,23 @@ Here is an example issue of how @benelot did it that worked pretty smoothly: [#1
11
11
## Setup development
12
12
13
13
1 . __ Fork and clone__
14
- First fork this repo, then clone your fork. In this way you become prepared to make a pull request.
14
+ First fork this repo, then clone your fork. In this way you become prepared to make a pull request.
15
+
16
+ ``` shell
17
+ # clone your fork
18
+ git clone https://github.com/< your-github-username> /jupyter_contrib_nbextensions.git
19
+ cd jupyter_contrib_nbextensions
20
+ ```
15
21
16
- ``` shell
17
- # clone your fork
18
- git clone https://github.com/< your-github-username> /jupyter_contrib_nbextensions.git
19
- cd jupyter_contrib_nbextensions
20
- ```
21
22
2 . __ Setup__
22
- ``` shell
23
- # run from the main directory, where setup.py is
24
- pip install --editable .
25
23
26
- # on windows, remove the --symlink flag and run the command after code updates
27
- jupyter-contrib-nbextension install --sys-prefix --symlink
28
- ```
24
+ ``` shell
25
+ # run from the main directory, where setup.py is
26
+ pip install --editable .
27
+
28
+ # on windows, remove the --symlink flag and re-run the command each time you make changes
29
+ jupyter-contrib-nbextension install --sys-prefix --symlink
30
+ ```
29
31
30
32
## Create an extension
31
33
You can’t perform that action at this time.
0 commit comments