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
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