Re: Installing Arrow

2016-07-13 Thread Manoj Kumar
I stringed together a set of installation instructions to help future Python developers. The PR is here https://github.com/apache/arrow/pull/105 On Wed, Jul 6, 2016 at 2:28 PM, Wes McKinney wrote: > You can look at the Travis CI scripts to see the build procedure for > each component: > > https

Re: Installing Arrow

2016-07-06 Thread Wes McKinney
You can look at the Travis CI scripts to see the build procedure for each component: https://github.com/apache/arrow/tree/master/ci While developing, I usually install things like parquet-cpp in $HOME/local and set $PARQUET_HOME (or any other dependency env variables) to that directory. We haven

Re: Installing Arrow

2016-07-06 Thread Manoj Kumar
Hi, I have problems in installing the Python port of arrow. It seems that it requires parquet-cpp. So I installed parquet-cpp from source using the following instructions here (https://github.com/apache/parquet-cpp) Doing "cmake ." and "make" from the parquet-cpp root directory, seems to work hi

Re: Installing Arrow

2016-07-05 Thread Manoj Kumar
Hi Wes, I updated Boost and it works now. I'll send a pull request to make a note for that soon. On Tue, Jul 5, 2016 at 3:30 PM, Wes McKinney wrote: > Oops, had a keyboarding failure. I got cmake 2.8.12.2 via yum on > CentOS 6 after installing the devtoolset. > > On Tue, Jul 5, 2016 at 3:29 PM

Re: Installing Arrow

2016-07-05 Thread Wes McKinney
Oops, had a keyboarding failure. I got cmake 2.8.12.2 via yum on CentOS 6 after installing the devtoolset. On Tue, Jul 5, 2016 at 3:29 PM, Wes McKinney wrote: > hi Manoj, > > What is the output of > > cmake --version > > I installed the RHEL devtoolset using the set of commands in > > https://git

Re: Installing Arrow

2016-07-05 Thread Wes McKinney
hi Manoj, What is the output of cmake --version I installed the RHEL devtoolset using the set of commands in https://github.com/conda-forge/docker-images/blob/master/linux-anvil/Dockerfile I had to run scl enable devtoolset-2 bash x and am able to build the thirdparty on CentOS 6.8. https://

Re: Installing Arrow

2016-07-05 Thread Manoj Kumar
Hi all, Thanks for the tips. I upgraded gcc to support C++11. g++ --version g++ (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15) Copyright (C) 2013 Free Software Foundation, Inc. But I still get the error. Here is the full traceback: https://gist.github.com/MechCoder/2f97e53c35d36bb132d118f9abc7a255 An

Re: Installing Arrow

2016-07-01 Thread Micah Kornfield
I think if c++11 was used to compile the library it might also fix the issue. On Friday, July 1, 2016, Holden Karau wrote: > So doing a bit of hunting it seems like this might be coming since your > missing some expected build libraries, namely you don't have any of the > expected regex librarie

Re: Installing Arrow

2016-07-01 Thread Holden Karau
So doing a bit of hunting it seems like this might be coming since your missing some expected build libraries, namely you don't have any of the expected regex libraries. I'm used to working on ubuntu/debian derived systems but it seems like installing something like `yum groupinstall "Development T

Installing Arrow

2016-07-01 Thread Manoj Kumar
Hi, I am trying to install Arrow using the following instructions. ./cpp/thirdparty/download_thirdparty.sh ./cpp/thirdparty/build_thirdparty.sh It fails with this error: + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/home/manoj/arrow/cpp/thirdparty/installed '-DCMAKE_CXX_FLAGS=-fPI