Skip to content

Commit 7d73511

Browse files
committed
Add package info to README
1 parent f8d7745 commit 7d73511

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,25 @@ I am currently doing the final edits of these notebooks, and will post them as I
7474
jakesmac:PythonDataScienceHandbook jakevdp$ emacs README.md
7575

7676

77+
## Required Packages
78+
79+
The code in the book was tested with Python 3.5, though most (but not all) will also work correctly with Python 2.7 and other older Python versions.
80+
81+
The packages required to run the code in the book are listed in [requirements.txt](requirements.txt). To install these using [conda](http://conda.pydata.org), run the following at the command-line:
82+
83+
```
84+
$ conda install --file requirements.txt
85+
```
86+
87+
To create a stand-alone environment named ``PDSH`` with Python 3.5 and all the required package versions, run the following:
88+
89+
```
90+
$ conda create -n PDSH python=3.5 --file requirements.txt
91+
```
92+
93+
You can read more about using conda environments in the [Managing Environments](http://conda.pydata.org/docs/using/envs.html) section of the conda documentation.
94+
95+
7796
## Code Listings
7897

7998
The notebooks above are still being edited. In the meantime, you can see all

0 commit comments

Comments
 (0)