PolMine / GermaParl

GermaParl R Data Package
12 stars 3 forks source link

germaparl unavailable on cran #21

Open chdhh opened 3 years ago

chdhh commented 3 years ago

Some of my students are unable to download and install the germaparl package as it seems to be offline.

https://cran.r-project.org/web/packages/GermaParl/index.html

I was able to bypass the problem by downloading and installing an archieved version.

url <- "https://cran.r-project.org/src/contrib/Archive/GermaParl/GermaParl_1.5.2.tar.gz"
pkgFile <- "GermaParl_1.5.2.tar.gz"
download.file(url = url, destfile = pkgFile)

install.packages(pkgs=pkgFile, type="source", repos=NULL)

unlink(pkgFile)

library(GermaParl)
library(cwbtools)

GermaParl::germaparl_download_corpus()