Skip to content

Commit 2abc02e

Browse files
authored
Merge pull request #7 from MetaCell/development
README Updates
2 parents 35755f6 + 683831a commit 2abc02e

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,35 @@ This repository hosts the user interface for [NetPyNE](http://www.neurosimlab.or
1313
##### Using Kitematic
1414
Open [Kitematic](https://kitematic.com/): search for netpyne-ui and create the container.
1515

16-
![Image](https://github.com/tarelli/bucket/raw/master//neuronuiImage.png)
16+
![Image](https://github.com/metacell/netpyne-ui/raw/master/docs/kitematicImage.png)
1717

1818
Start the container and click on Web preview to launch it. No need to ever use the command line, enjoy!
1919

20-
![Kitematic](https://github.com/tarelli/bucket/raw/master//kitematic.png)
20+
![Kitematic](https://github.com/metacell/netpyne-ui/raw/master/docs/kitematicRun.png)
2121

2222
##### From command line
23+
To pull the docker container:
2324
```
2425
docker pull metacell/netpyne-ui
26+
```
27+
To run the docker container:
28+
```
2529
docker run -it -p 8888:8888 metacell/netpyne-ui
2630
```
27-
Open your browser and connect to http://localhost:8888/geppetto.
31+
Or alternatively, if you want a local folder outside of the Docker container to host the NetPyNE-UI workspace (where you can import models from, export models to, inspect the log and the jupyter notebook) you can execute the following command:
32+
```
33+
docker run -it -v ~/folder_in_your_computer:/home/jovyan/netpyne_workspace -p 8888:8888 metacell/netpyne-ui
34+
```
35+
This will mount your local folder `folder_in_your_computer` as a volume inside the container and will be used to host the NetPyNE-UI workspace (`/home/jovyan/netpyne_workspace` inside the container).
2836

37+
Once you run your container you can open your browser and connect to http://localhost:8888/geppetto.
2938

3039
#### Install using pip
3140
```
32-
pip install netpyne_ui
33-
jupyter nbextension enable --py jupyter_geppetto
34-
NetPyNE-UI
41+
Coming soon
3542
```
3643

37-
#### Install from sources (for developers and for using your own NetPyNE models)
44+
#### Install from sources (for developers)
3845
```
3946
git clone https://github.com/MetaCell/NetPyNE-UI.git
4047
cd utilities

0 commit comments

Comments
 (0)