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
+35
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,15 @@ See also [slides of a recent talk about pyfolio.](http://nbviewer.ipython.org/fo
27
27
28
28
## Installation
29
29
30
+
### (Optional) Virtual Environment
31
+
32
+
For development on pyfolio itself, you might want to use a [virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/) to avoid dependency conflicts between `pyfolio` and other python projects you have. To get set up with a virtual env, run:
33
+
```bash
34
+
35
+
mkvirtualenv pyfolio
36
+
```
37
+
before running the install commands below.
38
+
30
39
To install `pyfolio` via `pip` issue the following command:
31
40
32
41
```bash
@@ -46,11 +55,37 @@ the IPython kernel when you make changes.
Some of Pyfolio's functionality, such as the [Bayesian tearsheet](https://github.com/quantopian/pyfolio/blob/master/pyfolio/examples/bayesian.ipynb), requires PyMC3 and Theano. To get set up, you can run:
If you are on OSX and using a non-framework build of python you may need to set your backend:
50
69
```bash
51
70
echo"backend: TkAgg">~/.matplotlib/matplotlibrc
52
71
```
53
72
73
+
## Usage
74
+
75
+
A good way to get started is to run the examples in a [Jupyter notebook](http://jupyter.org/).
76
+
77
+
To get set up with an example, you can:
78
+
79
+
Run a Jupyter notebook server via:
80
+
81
+
```bash
82
+
jupyter notebook
83
+
```
84
+
85
+
From the notebook list page(usually found at `http://localhost:8888/`), navigate over to the examples directory, and open any file with a .ipynb extension.
86
+
87
+
Execute the code in a notebook cell by clicking on it and hitting Shift+Enter.
88
+
54
89
## Questions?
55
90
56
91
If you find a bug, feel free to open an issue on our github tracker.
0 commit comments