位置:首页 > 脚本语言 > Ruby在线教程 > Ruby 安装(Windows)

Ruby 安装(Windows)

下面是步骤,在Windows机器上安装Ruby。

注意: 在安装时,可能有不同的版本。

  • 下载最新版本的Ruby一个压缩文件。请击 Download Link.

  • 下载Ruby的归档文件后,解压后得到转变成新创建的目录:

  • 双击Ruby1.6.7.exe文件。 Ruby安装向导启动。

  • 单击“下一步”移动至向导页中的重要信息,并继续前进,直到Ruby的安装完成安装Ruby。

可能需要安装一些环境变量,如果没有适当安装。

  • If you use Windows 9x, add the following lines to your c:autoexec.bat: set PATH="D:(ruby install directory)in;%PATH%"

  • Windows NT/2000 用户需要修改自己的注册表.

    • Click Control Panel | System Properties | Environment Variables.

    • Under System Variables, select Path and click EDIT.

    • Add your Ruby directory to the end of the Variable Value list and click OK.

    • Under System Variables, select PATHEXT and click EDIT.

    • Add .RB and .RBW to the Variable Value list and click OK.

安装完成后,确保一切工作正常通过发出以下命令在命令行:

$ruby -v
ruby 1.6.7
  • 如果一切顺利,这应该输出安装Ruby解释器的版本,如上图所示。可能已经安装了不同的版本,所以它会显示一个不同的版本。