Repository: arrow Updated Branches: refs/heads/master c4f5a1237 -> 2551050b3
ARROW-1554: [Python] Update Sphinx install page to note that VC14 runtime may need to be installed on Windows Close #819 (tidying) Author: Wes McKinney <[email protected]> Closes #1115 from wesm/ARROW-1554 and squashes the following commits: a7c3e279 [Wes McKinney] Update Sphinx install page to note that VC14 runtime may need to be installed separately when using pip on Windows Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/2551050b Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/2551050b Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/2551050b Branch: refs/heads/master Commit: 2551050b358f572a18ac7edd964c55c092ed5b1a Parents: c4f5a12 Author: Wes McKinney <[email protected]> Authored: Tue Sep 19 23:46:15 2017 -0400 Committer: Wes McKinney <[email protected]> Committed: Tue Sep 19 23:46:15 2017 -0400 ---------------------------------------------------------------------- python/doc/source/install.rst | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/2551050b/python/doc/source/install.rst ---------------------------------------------------------------------- diff --git a/python/doc/source/install.rst b/python/doc/source/install.rst index a2a6520..d07d900 100644 --- a/python/doc/source/install.rst +++ b/python/doc/source/install.rst @@ -30,19 +30,20 @@ To install the latest version of PyArrow from conda-forge using conda: Pip --- -Install the latest version from PyPI: +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 +<https://www.microsoft.com/en-us/download/details.aspx?id=48145>`_. + .. note:: - Currently there are only binary artifacts available for Linux and MacOS. - Otherwise this will only pull the python sources and assumes an existing - installation of the C++ part of Arrow. To retrieve the binary artifacts, - you'll need a recent ``pip`` version that supports features like the - ``manylinux1`` tag. + 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 ----------------------
