Install AggDraw. From natevw's post on stack overflow.
Includes a patch I discovered was necessary for freetype, mentioned here.
Install AggDraw. From natevw's post on stack overflow.
Includes a patch I discovered was necessary for freetype, mentioned here.
| #!/bin/bash | |
| # | |
| # Installs the latest RStudio daily desktop build for OSX/macOS and Ubuntu(amd64) | |
| # | |
| # https://support.rstudio.com/hc/en-us/articles/203842428-Getting-the-newest-RStudio-builds | |
| set -e | |
| install_macos_daily() { | |
| REDIRECT_URL="https://www.rstudio.org/download/latest/daily/desktop/mac/RStudio-latest.dmg" |
| # Instructions for 4.14 and cuda 9.1 | |
| # If upgrading from 4.13 and cuda 9.0 | |
| $ sudo apt-get purge --auto-remove libcud* | |
| $ sudo apt-get purge --auto-remove cuda* | |
| $ sudo apt-get purge --auto-remove nvidia* | |
| # also remove the container directory direcotory at /usr/local/cuda-9.0/ | |
| # Important libs required with 4.14.x with Cuda 9.X | |
| $ sudo apt install libelf1 libelf-dev |
| setwd("~/rProgramming") | |
| files.sources = list.files() | |
| sapply(files.sources, source) |
| # Custom history configuration | |
| # Run script using: | |
| # chmod u+x better_history.sh | |
| # sudo su | |
| # ./better_history.sh | |
| echo ">>> Starting" | |
| echo ">>> Loading configuration into /etc/bash.bashrc" | |
| echo "HISTTIMEFORMAT='%F %T '" >> /etc/bash.bashrc | |
| echo 'HISTFILESIZE=-1' >> /etc/bash.bashrc |