|
1 | | -# An-Overview-of-Python-s-Datatable-package |
| 1 | +# AnOverview of Python's Datatablepackage |
2 | 2 | Python library for efficient multi-threaded data processing, with the support for out-of-memory datasets.
|
| 3 | + |
| 4 | + |
| 5 | +## Installation |
| 6 | + |
| 7 | +On MacOS systems installing datatable is as easy as |
| 8 | +```sh |
| 9 | +pip install datatable |
| 10 | +``` |
| 11 | + |
| 12 | +On Linux you can install a binary distribution as |
| 13 | +```sh |
| 14 | +# If you have Python 3.5 |
| 15 | +pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.8.0/datatable-0.8.0-cp35-cp35m-linux_x86_64.whl |
| 16 | + |
| 17 | +# If you have Python 3.6 |
| 18 | +pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.8.0/datatable-0.8.0-cp36-cp36m-linux_x86_64.whl |
| 19 | +``` |
| 20 | + |
| 21 | +On all other platforms a source distribution will be needed. For more |
| 22 | +information see [Build instructions](https://datatable.readthedocs.io/en/latest/install.html). |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | +## References |
| 28 | +* [Documentation](https://datatable.readthedocs.io/en/latest/?badge=latest) |
0 commit comments