質問編集履歴
1
やったことの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,6 +14,130 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
+
#実行したこと
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
環境変数に、Javaをインストールしました。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
![イメージ説明](f23e7e2a31e30dd7d819d4bc94672322.png)
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
![![イメージ説明](0f4fd34ac02a616f51035f4879d87b5e.png)](4c21e360b744216c04a38c2fb09cacea.png)
|
34
|
+
|
35
|
+
また、Javaのバージョンを確認したところ、このような結果がかえって来ました。
|
36
|
+
|
37
|
+
```Console
|
38
|
+
|
39
|
+
PS C:\Users\workspace\scala-study> java -version
|
40
|
+
|
41
|
+
openjdk version "11.0.2" 2019-01-15
|
42
|
+
|
43
|
+
OpenJDK Runtime Environment 18.9 (build 11.0.2+9)
|
44
|
+
|
45
|
+
OpenJDK 64-Bit Server VM 18.9 (build 11.0.2+9, mixed mode)
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
Chocoを使いsbtをインストールしました。
|
52
|
+
|
53
|
+
そして、このような結果が出てきました。
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
```Console
|
58
|
+
|
59
|
+
PS C:\Windows\system32> choco install sbt
|
60
|
+
|
61
|
+
Chocolatey v0.10.15
|
62
|
+
|
63
|
+
Installing the following packages:
|
64
|
+
|
65
|
+
sbt
|
66
|
+
|
67
|
+
By installing you accept licenses for the packages.
|
68
|
+
|
69
|
+
Progress: Downloading sbt 1.3.8... 100%
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
sbt v1.3.8 [Approved]
|
74
|
+
|
75
|
+
sbt package files install completed. Performing other installation steps.
|
76
|
+
|
77
|
+
The package sbt wants to run 'chocolateyInstall.ps1'.
|
78
|
+
|
79
|
+
Note: If you don't run this script, the installation will fail.
|
80
|
+
|
81
|
+
Note: To confirm automatically next time, use '-y' or consider:
|
82
|
+
|
83
|
+
choco feature enable -n allowGlobalConfirmation
|
84
|
+
|
85
|
+
Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint):
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
Timeout or your choice of '' is not a valid selection.
|
90
|
+
|
91
|
+
You must select an answer
|
92
|
+
|
93
|
+
Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): y
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
WARNING: No registry key found based on 'sbt*'
|
98
|
+
|
99
|
+
Downloading sbt
|
100
|
+
|
101
|
+
from 'https://github.com/sbt/sbt/releases/download/v1.3.8/sbt-1.3.8.msi'
|
102
|
+
|
103
|
+
Progress: 100% - Completed download of C:\Users\acfoa\AppData\Local\Temp\chocolatey\sbt\1.3.8\sbt-1.3.8.msi (55.75 MB).
|
104
|
+
|
105
|
+
Download of sbt-1.3.8.msi (55.75 MB) completed.
|
106
|
+
|
107
|
+
Hashes match.
|
108
|
+
|
109
|
+
Installing sbt...
|
110
|
+
|
111
|
+
sbt has been installed.
|
112
|
+
|
113
|
+
sbt may be able to be automatically uninstalled.
|
114
|
+
|
115
|
+
Environment Vars (like PATH) have changed. Close/reopen your shell to
|
116
|
+
|
117
|
+
see the changes (or in powershell/cmd.exe just type `refreshenv`).
|
118
|
+
|
119
|
+
The install of sbt was successful.
|
120
|
+
|
121
|
+
Software installed as 'msi', install location is likely default.
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
Chocolatey installed 1/1 packages.
|
126
|
+
|
127
|
+
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
```
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
この結果から見ると、インストール出来ていると考えれます。
|
136
|
+
|
137
|
+
![イメージ説明](971ae97c1e2676d002c75aef09aeb058.png)
|
138
|
+
|
139
|
+
|
140
|
+
|
17
141
|
|
18
142
|
|
19
143
|
#試したこと
|