質問編集履歴
1
エラーコードを記載しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,15 +8,83 @@
|
|
8
8
|
|
9
9
|
### 発生している問題・エラーメッセージ
|
10
10
|
|
11
|
+
```Rstudio
|
11
12
|
|
13
|
+
install.packages("glmnet")
|
12
14
|
|
13
15
|
```
|
14
16
|
|
15
|
-
library(glmnet) でエラー:
|
16
17
|
|
18
|
+
|
19
|
+
|
20
|
+
|
17
|
-
|
21
|
+
> Warning in install.packages :
|
22
|
+
|
23
|
+
> unable to access index for repository https://cran.rstudio.com/bin/macosx/el-capitan/contrib/3.6:
|
24
|
+
|
25
|
+
> URL 'https://cran.rstudio.com/bin/macosx/el-capitan/contrib/3.6/PACKAGES' を開けません
|
26
|
+
|
27
|
+
> Package which is only available in source form, and may need
|
28
|
+
|
29
|
+
> compilation of C/C++/Fortran: ‘glmnet’
|
30
|
+
|
31
|
+
> Do you want to attempt to install these from sources? (Yes/no/cancel)
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```Rstudio
|
38
|
+
|
39
|
+
yes
|
18
40
|
|
19
41
|
```
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
> installing the source package ‘glmnet’
|
46
|
+
|
47
|
+
>
|
48
|
+
|
49
|
+
> URL 'https://cran.rstudio.com/src/contrib/glmnet_3.0-2.tar.gz' を試しています
|
50
|
+
|
51
|
+
> Content type 'application/x-gzip' length 1529474 bytes (1.5 MB)
|
52
|
+
|
53
|
+
> ==================================================
|
54
|
+
|
55
|
+
> downloaded 1.5 MB
|
56
|
+
|
57
|
+
>
|
58
|
+
|
59
|
+
> * installing *source* package ‘glmnet’ ...
|
60
|
+
|
61
|
+
> ** パッケージ ‘glmnet’ の解凍および MD5 サムの検証に成功しました
|
62
|
+
|
63
|
+
> ** using staged installation
|
64
|
+
|
65
|
+
> ** libs
|
66
|
+
|
67
|
+
> gfortran -fPIC -Wall -g -O2 -c glmnet5dpclean.f -o glmnet5dpclean.o
|
68
|
+
|
69
|
+
> make: gfortran: No such file or directory
|
70
|
+
|
71
|
+
> make: *** [glmnet5dpclean.o] Error 1
|
72
|
+
|
73
|
+
> ERROR: compilation failed for package ‘glmnet’
|
74
|
+
|
75
|
+
> * removing ‘/Library/Frameworks/R.framework/Versions/3.6/Resources/library/glmnet’
|
76
|
+
|
77
|
+
> Warning in install.packages :
|
78
|
+
|
79
|
+
> installation of package ‘glmnet’ had non-zero exit status
|
80
|
+
|
81
|
+
>
|
82
|
+
|
83
|
+
> The downloaded source packages are in
|
84
|
+
|
85
|
+
> ‘/private/var/folders/zz/1ywkjyw55232vjbkf7zzmgtjzw7vk_/T/Rtmp1m4d1q/downloaded_packages’
|
86
|
+
|
87
|
+
|
20
88
|
|
21
89
|
|
22
90
|
|
@@ -40,33 +108,11 @@
|
|
40
108
|
|
41
109
|
install.packages("glmnet")
|
42
110
|
|
43
|
-
で、事前にパッケージをインストールすると、
|
111
|
+
で、事前にパッケージをインストールしたうえでglmnetのパッケージを実行すると、
|
112
|
+
|
113
|
+
以下の通りパッケージが使えません。
|
44
114
|
|
45
115
|
|
46
|
-
|
47
|
-
```Rstudio
|
48
|
-
|
49
|
-
Do you want to attempt to install these from sources? (Yes/no/cancel)
|
50
|
-
|
51
|
-
```
|
52
|
-
|
53
|
-
そこで、
|
54
|
-
|
55
|
-
yes
|
56
|
-
|
57
|
-
を打ち込むと
|
58
|
-
|
59
|
-
```Rstudio
|
60
|
-
|
61
|
-
The downloaded source packages are in
|
62
|
-
|
63
|
-
‘/private/var/folders/zz/1ywkjyw55232vjbkf7zzmgtjzw7vk_/T/RtmpY0Xitb/downloaded_packages’
|
64
|
-
|
65
|
-
```
|
66
|
-
|
67
|
-
と出るので、間違いなくダウンロードできていると思うのですが、
|
68
|
-
|
69
|
-
その後実際に"glmnet"を利用しようとすると以下の通りエラーで利用できません。
|
70
116
|
|
71
117
|
```Rstudio
|
72
118
|
|
@@ -80,7 +126,7 @@
|
|
80
126
|
|
81
127
|
|
82
128
|
|
83
|
-
この
|
129
|
+
冒頭のinstall.packagesでエラーが起こっているのでしょうか?
|
84
130
|
|
85
131
|
|
86
132
|
|