Uh oh!
There was an error while loading. Please reload this page.
ARROW-3925: [Python] Add autoconf to conda install instructions - #2836
ARROW-3925: [Python] Add autoconf to conda install instructions#2836fjetter wants to merge 5 commits into
Conversation
On long term we might want to prefer: conda create -y -n pyarrow-dev -c conda-forge
--file arrow/ci/conda_env_cpp.yml
--file arrow/ci/conda_env_python.yml
python=3.6which will be tested by the docker containers. |
fjetter
commented
Oct 26, 2018
There are cases for packages which I would like to install via conda, e.g.
@kszucs Do you have any preferences? |
kszucs
commented
Oct 26, 2018
@fjetter nice summary :) Go with the second. |
wesm
commented
Nov 9, 2018
@fjetter ping on this |
kszucs
commented
Nov 10, 2018
@wesm I'll finalize this PR. What do You think about using conda create -y -n pyarrow-dev -c conda-forge
--file arrow/ci/conda_env_cpp.yml
--file arrow/ci/conda_env_python.yml
python=3.6in the development documentation? |
wesm
commented
Nov 10, 2018
That's fine with me. Fewer things to maintain |
wesm
commented
Nov 10, 2018
May have to use backslashes in the Windows version :) |
wesm
commented
Nov 16, 2018
Pinging about this |
@wesm pong Dockerfile works cpp tests pass, pyarrow-dev install instruction works and pyarrow compiles (on OSX) |
There was a problem hiding this comment.
Hm, I think just single backslashes is OK? I will try it out on Windows before merging
There was a problem hiding this comment.
I'll render the docs, because I put those to escape the single backslash.
wesm
commented
Nov 21, 2018
Argh so one problem: autoconf is not cross-platform. Does this cause issues on Windows? I can test it out today if no one else has time |
@wesm I don't have a windows VM to test it |
wesm
commented
Nov 30, 2018
I will try it out on my Windows machine and merge if no issues |
wesm
commented
Dec 2, 2018
So we'll have to omit autoconf from conda_env_cpp.yml |
autoconf is required by the jemalloc build
| conda install -c conda-forge \ | ||
| --file arrow/ci/conda_env_cpp.yml && \ | ||
| --file arrow/ci/conda_env_cpp.yml \ | ||
| --file arrow/ci/conda_env_unix.yml && \ |
autoconf is required by the jemalloc build