Не удается установить пакет aws.s3 в R Studio Server в Ubuntu 18.04 - разрешение запрещено? - PullRequest
1 голос
/ 02 июня 2019

Я на Ubuntu 18.04, машина EC2.

Скажите, пожалуйста, как включить R Studio Server для установки пакета aws.s3.

Вот что я делаю:

install.packages(c('aws.s3', 'aws.signature'), repos = c('cloudyr' = 'http://cloudyr.github.io/drat'), lib = "/vg1/lv1/R/x86_64-pc-linux-gnu-library/")

Где vg1/lv1/ - мой диск 250 ГБ без монтирования root.

Вот ошибка:

Installing package into ‘/vg1/lv1/R/x86_64-pc-linux-gnu-library/3.6’ (as ‘lib’ is unspecified) also installing the dependency ‘aws.signature’

trying URL 'https://cloud.r-project.org/src/contrib/aws.signature_0.5.0.tar.gz' Content type 'application/x-gzip' length 24939 bytes (24 KB)
================================================== downloaded 24 KB

trying URL 'https://cloud.r-project.org/src/contrib/aws.s3_0.3.12.tar.gz' Content type 'application/x-gzip' length 47424 bytes (46 KB)
================================================== downloaded 46 KB

* installing *source* package ‘aws.signature’ ...
** package ‘aws.signature’ successfully unpacked and MD5 sums checked
** using staged installation
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded from temporary location Warning in file(con, "rb") :   cannot open file '/home/ssolun/.aws/credentials': Permission denied Error: package or namespace load failed for ‘aws.signature’:  .onLoad failed in loadNamespace() for 'aws.signature', details:   call: file(con, "rb")  error: cannot open the connection Error: loading failed Execution halted ERROR: loading failed
* removing ‘/vg1/lv1/R/x86_64-pc-linux-gnu-library/3.6/aws.signature’ Warning in install.packages :   installation of package ‘aws.signature’ had non-zero exit status ERROR: dependency ‘aws.signature’ is not available for package ‘aws.s3’
* removing ‘/vg1/lv1/R/x86_64-pc-linux-gnu-library/3.6/aws.s3’ Warning in install.packages :   installation of package ‘aws.s3’ had non-zero exit status

The downloaded source packages are in   ‘/tmp/RtmpAkWgxm/downloaded_packages’

Скажите, пожалуйста, как разрешить доступ к R Studio Server для фактической установки этого пакета?

1 Ответ

1 голос
/ 02 июня 2019

Узнал!Это произошло из-за неправильного пользователя, владеющего файлом.

Вот что я сделал и решил проблему, надеюсь, это поможет другим:

sudo chown your_user_name .aws/credentials 
...