Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/ncss-tech/dsm-focus
Browse files Browse the repository at this point in the history
  • Loading branch information
smroecker committed Jul 19, 2024
2 parents be653dd + d53766b commit 83a492b
Show file tree
Hide file tree
Showing 11 changed files with 2,483 additions and 8 deletions.
Binary file not shown.
38 changes: 30 additions & 8 deletions google-cloud-platform/RStudioServerUbuntuGCP.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,36 @@ Enter the following into the terminal:
sudo apt-get update -y && sudo apt-get upgrade -y

2. Install required dependencies
# to install deb
sudo apt-get install gdebi-core

# to install packages in rstudio you may need a compiler
sudo apt install gcc
sudo apt-get install build-essential
# some packagages need fortran to compile
sudo apt-get install gfortran

3. Install R for Ubuntu
# set new ubuntu repositiories for r 4.2
sudo apt install -y --no-install-recommends software-properties-common dirmngr
# Add the keys
Follow guidance here: https://cloud.r-project.org/bin/linux/ubuntu/

# update indices
sudo apt update -qq

# install two helper packages we need
sudo apt install --no-install-recommends software-properties-common dirmngr

# add the signing key (by Michael Rutter) for these repos
# To verify key, run gpg --show-keys /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
# Fingerprint: E298A3A825C0D65DFD57CBB651716619E084DAB9

wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc

# add the R 4.0 repo from CRAN -- adjust 'focal' to 'groovy' or 'bionic' as needed
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
# Install R 4.2
sudo apt install -y r-base r-base-core r-recommended r-base-dev

#install r base
sudo apt install --no-install-recommends r-base



4. Install reauired dependencies for tidyverse
sudo apt-get install libcurl4-openssl-dev libssl-dev libxml2-dev libfontconfig1-dev -y
Expand All @@ -65,10 +84,10 @@ Enter the following into the terminal:

6. download RStudio Server
(make sure to get the correct version for your cpu platform and linux distro versiion - https://posit.co/download/rstudio-server/)
wget https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2023.06.2-561-amd64.deb
wget https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2024.04.2-764-amd64.deb

7. Install RStudio Server
sudo gdebi rstudio-server-2023.06.2-561-amd64.deb -y
sudo gdebi rstudio-server-2024.04.2-764-amd64.deb

8. Create a password or set up a new user
Get user name
Expand Down Expand Up @@ -159,3 +178,6 @@ Copy the external IP to the clipboard
Open a new browser tab
Paste the ip address into the browser followed by :8787 it should look like the following: 11.111.111.111:8787
Log in using your username and password

=======================================================================================================================
5. connect rstudio server to github :https://www.geeksforgeeks.org/link-your-github-account-with-r-studio/
Binary file modified meetings/practitioners/practitioner_subteam_minutes.docx
Binary file not shown.
Binary file modified meetings/properties/prop_mtg_minutes.docx
Binary file not shown.
Binary file added meetings/properties/~WRL0329.tmp
Binary file not shown.
Binary file modified meetings/quarterly/DSM FT_quarterly meetings.docx
Binary file not shown.
Loading

0 comments on commit 83a492b

Please sign in to comment.