Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
202 changes: 0 additions & 202 deletions cpp/LICENSE.txt

This file was deleted.

36 changes: 14 additions & 22 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,17 @@ These are the various projects that PyArrow depends on.
1. **g++ and gcc Version >= 4.8**
2. **cmake > 2.8.6**
3. **boost**
4. **Parquet-cpp**

The preferred way to install parquet-cpp is to use conda.
You need to set the ``PARQUET_HOME`` environment variable to where parquet-cpp is installed.
```bash
conda install -y --channel apache/channel/dev parquet-cpp
```
5. **Arrow-cpp and its dependencies***

The Arrow C++ library must be built with all options enabled and installed with ``ARROW_HOME`` environment variable set to
the installation location. Look at (https://github.com/apache/arrow/blob/master/cpp/README.md) for
instructions. Alternatively you could just install arrow-cpp
from conda.
```bash
conda install arrow-cpp -c apache/channel/dev
```
6. **Python dependencies: numpy, pandas, cython, pytest**

#### Install pyarrow
```bash
python setup.py build_ext --inplace
```
4. **Arrow-cpp and its dependencies***

The Arrow C++ library must be built with all options enabled and installed with
``ARROW_HOME`` environment variable set to the installation location. Look at
(https://github.com/apache/arrow/blob/master/cpp/README.md) for instructions.

5. **Python dependencies: numpy, pandas, cython, pytest**

#### Build pyarrow and run the unit tests

```bash
python setup.py build_ext --inplace
py.test pyarrow
```