-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Legacy Manual Install Instructions for Swirl Courses
Sean Kross edited this page Jan 24, 2019
·
1 revision
If the automatic course installation method outlined above does not work for you, then there's a simple alternative.
-
Click here to download the file
swirl_courses-master.zip
. -
Enter the following from the R console, substituting the correct file path to your downloaded file and the name of your desired course:
library(swirl)
install_course_zip("path/to/file/here/swirl_courses-master.zip", multi=TRUE,
which_course="Course Name Here")
swirl()
For example, if you download the zip file to ~/Downloads/swirl_courses-master.zip
, then the following command will install the R Programming course.
install_course_zip("~/Downloads/swirl_courses-master.zip", multi=TRUE, which_course="R Programming")
Please note that course names are case sensitive!
Although we recommend you install one course at a time, if you omit the which_course
argument, then all available courses from this repository will be installed:
install_course_zip("~/Downloads/swirl_courses-master.zip", multi=TRUE)