.. Licensed to the Apache Software Foundation (ASF) under one .. or more contributor license agreements. See the NOTICE file .. distributed with this work for additional information .. regarding copyright ownership. The ASF licenses this file .. to you under the Apache License, Version 2.0 (the .. "License"); you may not use this file except in compliance .. with the License. You may obtain a copy of the License at .. http://www.apache.org/licenses/LICENSE-2.0 .. Unless required by applicable law or agreed to in writing, .. software distributed under the License is distributed on an .. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY .. KIND, either express or implied. See the License for the .. specific language governing permissions and limitations .. under the License. Installing PyArrow ================== System Compatibility -------------------- PyArrow is regularly built and tested on Windows, macOS and various Linux distributions (including Ubuntu 16.04, Ubuntu 18.04). We strongly recommend using a 64-bit system. Python Compatibility -------------------- PyArrow pledges to maintain compatibility with Python 2.7 until the end of 2019. Other than that, PyArrow is currently compatible with Python 3.5, 3.6 and 3.7. Using Conda ----------- Install the latest version of PyArrow from `conda-forge `_ using `Conda `_: .. code-block:: bash conda install -c conda-forge pyarrow Using Pip --------- Install the latest version from `PyPI `_ (Windows, Linux, and macOS): .. code-block:: bash pip install pyarrow If you encounter any importing issues of the pip wheels on Windows, you may need to install the `Visual C++ Redistributable for Visual Studio 2015 `_. .. note:: Windows packages are only available for Python 3.5 and higher (this is also true for TensorFlow and any package that is implemented with modern C++). Installing from source ---------------------- See :ref:`python-development`.