На моем компьютере с Windows 10 (x64) я пытаюсь установить пакет R
(внутри R Studio
) с нашего частного SVN-сервера (Visual SVN Server), используя инструкции, приведенные здесь .Сервер имеет самозаверяющий сертификат.Чтобы установить пакет, я запускаю следующую команду:
install.packages("https://~path_to_private_SVN/trunk", repos = NULL, type = "source", method="curl", extra = "--user my_username:my_password")
Я получаю это сообщение об ошибке:
Installing package into ‘path_to_R_library/3.5’
(as ‘lib’ is unspecified)
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: https://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option.
HTTPS-proxy has similar options --proxy-cacert and --proxy-insecure.
Error in download.file(p, destfile, method, mode = "wb", ...) :
'curl' call had nonzero exit status
Ясно, что R Studio
не устраивает проблема с сертификатом сервера SVNи я не могу установить пакет R.Однако в данный момент я хотел бы проигнорировать этот вопрос об ошибке сертификата сервера SVN.Есть ли способ сказать install.packages()
не выполнять SSL certificate verification
для этого хоста SVN?Я знаю, что другой вариант установки пакета R
может быть devtools::install_svn()
.