Last active
October 9, 2022 06:41
-
-
Save pachadotdev/a789eb3bc96f33b47e5a1499481c0f4b to your computer and use it in GitHub Desktop.
Install R and Python via Homebrew
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See http://pacha.hk/2017-07-12_r_and_python_via_homebrew.html | |
# XCode CLT | |
xcode-select --install | |
# Update Homebrew and add formulae | |
brew update | |
# Check for broken dependencies and/or outdated packages | |
brew doctor | |
brew prune | |
# Brew PATH | |
echo "export LC_ALL=en_US.UTF-8" >> ~/.bash_profile | |
echo "export LANG=en_US.UTF-8" >> ~/.bash_profile | |
echo "export PATH=/usr/local/bin:$PATH" >> ~/.bash_profile && source ~/.bash_profile | |
# Python | |
brew install python | |
pip install pelican==3.6.3 | |
pip install markdown rpy2 | |
# R | |
brew install openblas | |
brew install r --with-openblas | |
echo 'Sys.setlocale(category="LC_ALL", locale = "en_US.UTF-8")' >> ~/.bash_profile | |
# data.table | |
R --vanilla << EOF | |
install.packages('data.table', repos='http://cran.us.r-project.org') | |
q() | |
EOF | |
# knitr | |
R --vanilla << EOF | |
install.packages('knitr', repos='http://cran.us.r-project.org') | |
q() | |
EOF | |
# rmarkdown | |
R --vanilla << EOF | |
install.packages('rmarkdown', repos='http://cran.us.r-project.org') | |
q() | |
EOF | |
# rJava | |
brew cask install java | |
sudo ln -f -s $(/usr/libexec/java_home)/jre/lib/server/libjvm.dylib /usr/local/lib | |
sudo Rscript -e 'install.packages("rJava", repos="http://rforge.net", type="source")'; | |
# devtools | |
brew install openssl openssl@1.1 libssh2 | |
sudo Rscript -e 'install.packages("devtools")'; | |
# tidyverse tools | |
sudo Rscript -e 'install.packages("tidyverse"))'; | |
# pdf extraction tools | |
brew install poppler | |
sudo Rscript -e 'install.packages("pdftools")'; | |
sudo Rscript -e 'library(devtools); install_github("ropensci/tabulizer")'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment