kou commented on issue #37346: URL: https://github.com/apache/arrow/issues/37346#issuecomment-1690882014
> this doesn't work anymore. What does mean? "`libarrow-dev` 13.0.0-1 not 12.0.1-1 is installed"? I don't think that https://github.com/apache/arrow/issues/37346#issuecomment-1690592131 is the right solution. For example, ```bash sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 91D18FCF079F8007 sudo add-apt-repository "deb [trusted=yes] https://apache.jfrog.io/artifactory/arrow/ubuntu/ focal main" ``` is meaningless because `sudo apt install -y -V ./apache-arrow-apt-source_12.0.1-1_all.deb` prepares the Apache Arrow's APT repository. I think that the following is what you want: ```bash # Install libarrow sudo apt install -y -V ca-certificates lsb-release wget wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb sudo apt-get update -y arrow_version=12.0.1-1 sudo apt-get install -y libpq-dev libarrow-dev=${arrow_version} libarrow-glib-dev=${arrow_version} gir1.2-arrow-1.0=${arrow_version} libparquet-dev=${arrow_version} libparquet-glib-dev=${arrow_version} gir1.2-parquet-1.0=${arrow_version} ``` We'll push `red-*` gems after https://github.com/Homebrew/homebrew-core/pull/140253 and https://github.com/msys2/MINGW-packages/pull/18242 are merged. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
