-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
35 lines (22 loc) · 1.15 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Install
The current package can be fetched directly from your Rstudio session. If not already
present, first install the devtools-package from your R terminal:
install.packages("devtools")
Then, install the rapbase package:
devtools::install_github("Rapporteket/rapbase")
When installed at Rapporteket make sure clean-up is performed:
devtools::install_github("Rapporteket/rapbase", args=c("--clean"))
This will add local configuration after the package has been installed
NOTE: Communicating through a proxy might cause the above install command to
fail. If so, try the following prior to the above install command:
library(httr)
set_config(
use_proxy(url="IPadr", port=portnr, username="user",password="passwd")
)
replacing the example parameter values with whatever applies for the
system the package is being installed on
Kokebok for "git, Rstudio og github på Windows gjennom proxy" :
(gjelder oppsett på SKDE. I andre regioner kan man måtte benytte andre proxy)
http://skde.readthedocs.io/en/master/git-r.html
Nyttig lenke til bruk av GitHub:
https://guides.github.com/activities/hello-world/#what