You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/06/13 01:36:33 UTC

[GitHub] [arrow] michaelccata opened a new issue, #13372: R installation and Brotli error code

michaelccata opened a new issue, #13372:
URL: https://github.com/apache/arrow/issues/13372

   Hello, not sure if this the right place to post this question. I'm very much a noob here.
   
   I'm not sure if it's operator error here or an actual bug.
   
   I'm simply trying to install `arrow` to read a parquet file into `R` and following this [guide](https://arrow.apache.org/docs/r/articles/install.html). I think I'm following the right steps, but still getting an error.
   
   <img width="757" alt="Screen Shot 2022-06-12 at 9 26 21 PM" src="https://user-images.githubusercontent.com/4422873/173264333-e7f2a5c6-7d46-4afb-9a0a-f28a9e6827e8.png">
   
   


-- 
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: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] michaelccata commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
michaelccata commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1159564522

   @nealrichardson bingo, I'm on a new machine and hadn't downloaded XCode or Brew yet. I installed `brew` and pulled down `cmake` and then everything clicked. 
   
   Thank so much for helping me troubleshoot this! 


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] edponce commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
edponce commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1196247819

   @nealrichardson This issue seems resolved so we should close it.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
nealrichardson commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1153689779

   If that doesn't work, try setting the env vars `FORCE_BUNDLED_BUILD=true LIBARROW_MINIMAL=false` and then run `install.packages("arrow", type = "source")`. It looks like `arrow::install_arrow()` will set those for you if you're on a M1 mac but not on an Intel mac. 
   
   Side note: we should turn on brotli and any other missing compression libs in the mac binaries.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] wjones127 commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
wjones127 commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1153569695

   Unfortunately, those instructions are primarily aimed at Linux users. `install.packages()` for MacOS installs pre-compiled binaries, which looks like they don't include Brotli.
   
   In theory, you should be able to run this instead:
   
   ```
   arrow::install_arrow(minimal=FALSE)
   ```
   
   (Though I found this doesn't work on my machine.)


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] wjones127 commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
wjones127 commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1154870300

   > Side note: we should turn on brotli and any other missing compression libs in the mac binaries.
   
   Issue created: https://issues.apache.org/jira/browse/ARROW-16828


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson closed issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
nealrichardson closed issue #13372: R installation and Brotli error code
URL: https://github.com/apache/arrow/issues/13372


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] michaelccata commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
michaelccata commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1155129658

   Thanks for the notes everyone and creating an issue in the project! @nealrichardson I just tried your recommendation and got this result. 
   
   <img width="841" alt="Screen Shot 2022-06-14 at 8 37 10 AM" src="https://user-images.githubusercontent.com/4422873/173578640-e47e63ef-047c-4823-be41-8a03f44321c2.png">
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] michaelccata commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
michaelccata commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1157501749

   Maybe it's something with my local system and/or permissions to write in these directories? 


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #13372: R installation and Brotli error code

Posted by GitBox <gi...@apache.org>.
nealrichardson commented on issue #13372:
URL: https://github.com/apache/arrow/issues/13372#issuecomment-1157709143

   I don't think that's it, you should be able to write to /tmp. Something didn't go as expected with fetching `cmake`. If you have `brew` installed, you can `brew install cmake` and then retry and it will skip the step that failed.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org