Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-1764: [Python] Add -c conda-forge for Windows dev installation instructions #1277

Closed
wants to merge 3 commits into from
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
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