Skip to content

Commit 9c5ea8a

Browse files
Merge pull request #299 from quantopian/readme-fixups
DOC: Readme improvements for new users
2 parents 40a4e4e + bbb557f commit 9c5ea8a

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

+35
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ See also [slides of a recent talk about pyfolio.](http://nbviewer.ipython.org/fo
2727

2828
## Installation
2929

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+
3039
To install `pyfolio` via `pip` issue the following command:
3140

3241
```bash
@@ -46,11 +55,37 @@ the IPython kernel when you make changes.
4655
- [pymc3](https://github.com/pymc-devs/pymc3) (optional)
4756
- [zipline](https://github.com/quantopian/zipline) (optional; requires master, *not* 0.7.0)
4857

58+
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:
59+
60+
```bash
61+
pip install theano
62+
```
63+
64+
```bash
65+
pip install git+https://github.com/pymc-devs/pymc3
66+
```
67+
4968
If you are on OSX and using a non-framework build of python you may need to set your backend:
5069
``` bash
5170
echo "backend: TkAgg" > ~/.matplotlib/matplotlibrc
5271
```
5372

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+
5489
## Questions?
5590

5691
If you find a bug, feel free to open an issue on our github tracker.

0 commit comments

Comments
 (0)