You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ This should open the notebook in your default web browser.
86
86
87
87
## Quick guide (console)
88
88
89
-
First, install iPython for a console-based interpreter.
89
+
First, install iPython for a console-based interpreter and start it.
90
90
```bash
91
91
$ pip install ipython
92
92
```
@@ -95,7 +95,16 @@ or if you are using the Conda package manager
95
95
$ conda install ipython
96
96
```
97
97
98
+
Then, first copy the notebook file ["usage_guide.py"](https://github.com/eltrompetero/coniii/blob/py3/ipynb/usage_guide.py) into a directory outside the "coniii" directory. Change to this directory and run
99
+
```bash
100
+
$ ipython
101
+
```
98
102
103
+
Once inside the iPython interpreter, run
104
+
```python
105
+
>>>%run usage_guide.py
106
+
```
107
+
This will run all the examples sequentially, so you may want to comment out unwanted lines.
0 commit comments