@@ -26,7 +26,7 @@ Installing pandas
2626Trying out pandas, no installation required!
2727~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2828
29- The easiest way to start experimenting with pandas doesn't involve installing
29+ The easiest way to start experimenting with pandas doesn't involve installing
3030pandas at all.
3131
3232`Wakari <https://wakari.io >`__ is a free service that provides a hosted
@@ -35,10 +35,10 @@ pandas at all.
3535Simply create an account, and have access to pandas from within your brower via
3636an `IPython Notebook <http://ipython.org/notebook.html >`__ in a few minutes.
3737
38- Installing pandas with Anaconda
38+ Installing pandas with Anaconda
3939~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4040
41- Installing pandas and the rest of the `NumPy <http://www.numpy.org/ >`__ and
41+ Installing pandas and the rest of the `NumPy <http://www.numpy.org/ >`__ and
4242`SciPy <http://www.scipy.org/ >`__ stack can be a little
4343difficult for inexperienced users.
4444
@@ -57,8 +57,8 @@ anything else, and without needing to wait for any software to be compiled.
5757Installation instructions for `Anaconda <http://docs.continuum.io/anaconda/ >`__
5858`can be found here <http://docs.continuum.io/anaconda/install.html >`__.
5959
60- A full list of the packages available as part of the
61- `Anaconda <http://docs.continuum.io/anaconda/ >`__ distribution
60+ A full list of the packages available as part of the
61+ `Anaconda <http://docs.continuum.io/anaconda/ >`__ distribution
6262`can be found here <http://docs.continuum.io/anaconda/pkg-docs.html >`__.
6363
6464An additional advantage of installing with Anaconda is that you don't require
@@ -78,7 +78,7 @@ If you want to have more control on which packages, or have a limited internet
7878bandwidth, then installing pandas with
7979`Miniconda <http://conda.pydata.org/miniconda.html >`__ may be a better solution.
8080
81- `Conda <http://conda.pydata.org/docs/ >`__ is the package manager that the
81+ `Conda <http://conda.pydata.org/docs/ >`__ is the package manager that the
8282`Anaconda <http://docs.continuum.io/anaconda/ >`__ distribution is built upon.
8383It is a package manager that is both cross-platform and language agnostic
8484(it can play a similar role to a pip and virtualenv combination).
@@ -90,15 +90,15 @@ minimal self contained Python installation, and then use the
9090First you will need `Conda <http://conda.pydata.org/docs/ >`__ to be installed and
9191downloading and running the `Miniconda
9292<http://conda.pydata.org/miniconda.html> `__
93- will do this for you. The installer
93+ will do this for you. The installer
9494`can be found here <http://conda.pydata.org/miniconda.html >`__
9595
9696The next step is to create a new conda environment (these are analogous to a
9797virtualenv but they also allow you to specify precisely which Python version
9898to install also). Run the following commands from a terminal window::
9999
100100 conda create -n name_of_my_env python
101-
101+
102102This will create a minimal environment with only Python installed in it.
103103To put your self inside this environment run::
104104
@@ -108,7 +108,7 @@ On Windows the command is::
108108
109109 activate name_of_my_env
110110
111- The final step required is to install pandas. This can be done with the
111+ The final step required is to install pandas. This can be done with the
112112following command::
113113
114114 conda install pandas
@@ -143,7 +143,7 @@ pandas can be installed via pip from
143143 pip install pandas
144144
145145This will likely require the installation of a number of dependencies,
146- including NumPy, will require a compiler to compile required bits of code,
146+ including NumPy, will require a compiler to compile required bits of code,
147147and can take a few minutes to complete.
148148
149149Installing using your Linux distribution's package manager.
@@ -259,6 +259,7 @@ Recommended Dependencies
259259
260260 * `numexpr <http://code.google.com/p/numexpr/ >`__: for accelerating certain numerical operations.
261261 ``numexpr `` uses multiple cores as well as smart chunking and caching to achieve large speedups.
262+ If installed, must be Version 2.1 or higher.
262263
263264 * `bottleneck <http://berkeleyanalytics.com/bottleneck >`__: for accelerating certain types of ``nan ``
264265 evaluations. ``bottleneck `` uses specialized cython routines to achieve large speedups.
@@ -277,7 +278,7 @@ Optional Dependencies
277278 * `Cython <http://www.cython.org >`__: Only necessary to build development
278279 version. Version 0.17.1 or higher.
279280 * `SciPy <http://www.scipy.org >`__: miscellaneous statistical functions
280- * `PyTables <http://www.pytables.org >`__: necessary for HDF5-based storage
281+ * `PyTables <http://www.pytables.org >`__: necessary for HDF5-based storage. Version 3.0.0 or higher required.
281282 * `SQLAlchemy <http://www.sqlalchemy.org >`__: for SQL database support. Version 0.8.1 or higher recommended.
282283 * `matplotlib <http://matplotlib.sourceforge.net/ >`__: for plotting
283284 * `statsmodels <http://statsmodels.sourceforge.net/ >`__
0 commit comments