gpt4 book ai didi

ruby - 无法使用Powershell执行Ruby文件

转载 作者:数据小太阳 更新时间:2023-10-29 08:57:31 29 4
gpt4 key购买 nike

我想使用 windows 10 powershell 执行一个 ruby​​ 文件。在我的 powershell 终端中,当我输入时

ruby test.rb 

我收到了

ruby: The term 'ruby' is not recognized as the name of the cmdlet, function, 
script file, or operable program. Check the spelling of the name, or if a
path was included, verify that the path is correct and try again.
At line:1 char:1
+ ruby test.rb
+Category Info :ObjectNotFound: (ruby:String) [],
CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

这些命令也不起作用

ruby.exe test.rb
rb.exe test.rb

我在正确的目录中。我怀疑问题与路径有关,但我还不了解路径。我一直在尝试在 Powershell 和我的初学者 IDE Visual Studio Code 中执行 .rb 文件。

谢谢

最佳答案

绝对是你路径的问题。试试这个:

$Path = 'C:\Path\to\ruby.exe'

& $Path args

确保 ruby.exe 的根文件夹位于 $env:Path 变量中。

$env:Path -split ';'

关于ruby - 无法使用Powershell执行Ruby文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47601063/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com