Skip to content

Commit

Permalink
ARROW-1764: [Python] Add -c conda-forge for Windows dev installation …
Browse files Browse the repository at this point in the history
…instructions

Author: dhirschf <[email protected]>
Author: Korn, Uwe <[email protected]>
Author: Uwe L. Korn <[email protected]>

Closes apache#1277 from xhochy/ARROW-1764 and squashes the following commits:

63143bb [Uwe L. Korn] Merge pull request #4 from dhirschfeld/gflags
bdb6b3f [dhirschf] Clarification of gflags channel
27f0896 [Korn, Uwe] ARROW-1764: [Python] Add -c conda-forge for Windows dev installation instructions
  • Loading branch information
dhirschf authored and wesm committed Nov 3, 2017
1 parent 527af63 commit 82cd6e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion cpp/apidoc/Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@ conda config --add channels conda-forge
Now, you can bootstrap a build environment

```shell
conda create -n arrow-dev cmake git boost-cpp flatbuffers rapidjson cmake thrift-cpp snappy zlib brotli gflags lz4-c zstd
conda create -n arrow-dev cmake git boost-cpp flatbuffers rapidjson cmake thrift-cpp snappy zlib brotli gflags lz4-c zstd -c conda-forge
```

***Note:***
> *Make sure to get the `conda-forge` build of `gflags` as the
naming of the library differs from that in the `defaults` channel*

Activate just created conda environment with pre-installed packages from
previous step:

Expand Down
3 changes: 2 additions & 1 deletion python/doc/source/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ First, starting from fresh clones of Apache Arrow and parquet-cpp:
.. code-block:: shell
conda create -n arrow-dev cmake git boost-cpp ^
flatbuffers snappy zlib brotli thrift-cpp rapidjson
flatbuffers snappy zlib brotli thrift-cpp rapidjson ^
-c conda-forge
activate arrow-dev
As one git housekeeping item, we must run this command in our Arrow clone:
Expand Down

0 comments on commit 82cd6e5

Please sign in to comment.