#前提・実現したいこと
ScalaをWindows10Home上で、使えるようにしたい
現在、N高のScala入門を勉強しています。
(僕が今受講している講座自体は無料なので、会員登録すれば、誰でも見れます)
このサイトに書かれているScalaの実行環境を作成しているのですが、同じような手順で実行しているのに、エラーが出てきます。
環境構築で躓きたくないので、是非ご助力ください。
#実行したこと
環境変数に、Javaをインストールしました。
また、Javaのバージョンを確認したところ、このような結果がかえって来ました。
Console
1PS C:\Users\workspace\scala-study> java -version 2openjdk version "11.0.2" 2019-01-15 3OpenJDK Runtime Environment 18.9 (build 11.0.2+9) 4OpenJDK 64-Bit Server VM 18.9 (build 11.0.2+9, mixed mode)
Chocoを使いsbtをインストールしました。
そして、このような結果が出てきました。
Console
1PS C:\Windows\system32> choco install sbt 2Chocolatey v0.10.15 3Installing the following packages: 4sbt 5By installing you accept licenses for the packages. 6Progress: Downloading sbt 1.3.8... 100% 7 8sbt v1.3.8 [Approved] 9sbt package files install completed. Performing other installation steps. 10The package sbt wants to run 'chocolateyInstall.ps1'. 11Note: If you don't run this script, the installation will fail. 12Note: To confirm automatically next time, use '-y' or consider: 13choco feature enable -n allowGlobalConfirmation 14Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): 15 16Timeout or your choice of '' is not a valid selection. 17You must select an answer 18Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): y 19 20WARNING: No registry key found based on 'sbt*' 21Downloading sbt 22 from 'https://github.com/sbt/sbt/releases/download/v1.3.8/sbt-1.3.8.msi' 23Progress: 100% - Completed download of C:\Users\acfoa\AppData\Local\Temp\chocolatey\sbt\1.3.8\sbt-1.3.8.msi (55.75 MB). 24Download of sbt-1.3.8.msi (55.75 MB) completed. 25Hashes match. 26Installing sbt... 27sbt has been installed. 28 sbt may be able to be automatically uninstalled. 29Environment Vars (like PATH) have changed. Close/reopen your shell to 30 see the changes (or in powershell/cmd.exe just type `refreshenv`). 31 The install of sbt was successful. 32 Software installed as 'msi', install location is likely default. 33 34Chocolatey installed 1/1 packages. 35 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 36
#試したこと
こちらのサイトを参考に、PowerShellの後に、sbt consoleと打ち込んで見ましたが、下記のようなエラーが出て、改善することが出来ません。
解決方法を教えていただきますと、幸いです。
PS C:\Users\workspace\scala-study> powershell sbt console sbt : 用語 'sbt' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。 名前が正しく記述されていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください 。 発生場所 行:1 文字:1 + sbt console + ~~~ + CategoryInfo : ObjectNotFound: (sbt:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
#発生している問題・エラーメッセージ
エラーメッセージ
sbt : 用語 'sbt' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。 名前が正しく記述されていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください 。 発生場所 行:1 文字:1 + sbt console + ~~~ + CategoryInfo : ObjectNotFound: (sbt:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
#該当のソースコード
PowerShell
1You must select an answer 2Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): y 3 4WARNING: No registry key found based on 'sbt*' 5Downloading sbt 6 from 'https://github.com/sbt/sbt/releases/download/v1.3.8/sbt-1.3.8.msi' 7Progress: 100% - Completed download of C:\Users\AppData\Local\Temp\chocolatey\sbt\1.3.8\sbt-1.3.8.msi (55.75 MB). 8Download of sbt-1.3.8.msi (55.75 MB) completed. 9Hashes match. 10Installing sbt... 11sbt has been installed. 12 sbt may be able to be automatically uninstalled. 13Environment Vars (like PATH) have changed. Close/reopen your shell to 14 see the changes (or in powershell/cmd.exe just type `refreshenv`). 15 The install of sbt was successful. 16 Software installed as 'msi', install location is likely default. 17 18Chocolatey installed 1/1 packages. 19 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 20PS C:\Windows\system32> cd $env:USERPROFILE 21>> mkdir workspace\scala-study 22>> cd workspace\scala-study 23>> sbt console 24 25 26 ディレクトリ: C:\Users\workspace 27 28 29Mode LastWriteTime Length Name 30---- ------------- ------ ---- 31d----- 2020/02/12 21:39 scala-study 32sbt : 用語 'sbt' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。 33名前が正しく記述されていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください 34。 35発生場所 行:4 文字:1 36+ sbt console 37+ ~~~ 38 + CategoryInfo : ObjectNotFound: (sbt:String) [], CommandNotFoundException 39 + FullyQualifiedErrorId : CommandNotFoundException 40 41 42 43PS C:\Users\workspace\scala-study> cd $env:USERPROFILE 44PS C:\Users> mkdir workspace\scala-study 45mkdir : 指定された名前 C:\Users\workspace\scala-study の項目は既に存在します。 46発生場所 行:1 文字:1 47+ mkdir workspace\scala-study 48+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 49 + CategoryInfo : ResourceExists: (C:\Users\workspace\scala-study:String) [New-Item], IOException 50 + FullyQualifiedErrorId : DirectoryExist,Microsoft.PowerShell.Commands.NewItemCommand 51 52PS C:\Users\> 53PS C:\Users\> cd workspace\scala-study 54PS C:\Users\workspace\scala-study> sbt console 55sbt : 用語 'sbt' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。 56名前が正しく記述されていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください 57。 58発生場所 行:1 文字:1 59+ sbt console 60+ ~~~ 61 + CategoryInfo : ObjectNotFound: (sbt:String) [], CommandNotFoundException 62 + FullyQualifiedErrorId : CommandNotFoundExceptio 63
#教えていただきたいこと
どう改善すると、良いのか具体的なやり方を教えて頂きたいです。
回答1件
あなたの回答
tips
プレビュー