`
fireDragonpzy
  • 浏览: 469153 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

rvm 安装

rvm 
阅读更多
.

https://rvm.beginrescueend.com/rvm/install/




Installing RVM
There are two fundamentally different ways to install and configure RVM.

•Single-User installations - (For an isolated install within a user's $HOME)
•Multi-User installations (For server administrators - For an installation usable by all users on the system - Please note that Single-User supercedes Multi-User. This also used to be called the System-Wide Install)
The system-wide script is no longer available, and any tutorials referencing it will no longer work correctly. Multi-User is the System-Wide install. The only supported install type for multiple users is the Multi-User install referenced below.

Note that that any outside tutorials are NOT supported whether they work or not. Tutorials are great, however we have spent massive amounts of man hours debugging the installation process. Please use the install process(es) from this site only, as this is the only supported installation types and methods.

For most purposes, the recommended installation method is Single-User, which is a self-contained RVM installation in a user's home directory.

To update an existing RVM installation
It is safe to simply re-run the installation script again, or you can follow the upgrading docs.

Installation
I recommend you read the installation script yourself. This will give you a chance to understand what it is doing before installing, and allow you to feel more comfortable running it if you do so.

1. Download and run the RVM installation script
Installing the latest release version in git:
user$ bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )For a Multi-User install you would execute the following:

user$ sudo bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )     Note: All multi-user install instructions must be prefixed with the 'sudo' command.
Installing a specific version:
user$ curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer -o rvm-installer ; chmod +x rvm-installer ; ./rvm-installer --version latestFor a Multi-User install you would do:

user$ curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer -o rvm-installer ; chmod +x rvm-installer ; sudo ./rvm-installer --version latestSingle-User Install Location: ~/.rvm/
If the install script is run as a standard, non-root user, RVM will install into the current users's home directory.

Multi-User Install Location: /usr/local/rvm
If the install script is run prefixed with sudo, RVM will automatically install into /usr/local/rvm Please see the troubleshooting page for an important note regarding Multi-User Installs.

If the rvm install script does nothing or complains about certificates you can bypass this by adding a '-k' switch to the curl command:

For Single-User installs

user$ bash < <(curl -sk https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)Please see the FAQ page for an important note regarding root only installs

For a Multi-User install you would do:

user$ sudo bash < <(curl -sk https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)2. Load RVM into your shell sessions as a function
Throughout these instructions, you may replace .bash_profile with the appropriate startup script for your bash-compatible shell. For other shells you may need to modify these commands. Zsh should be able to use these commands unmodified.
Single-User:
Load RVM by appending the rvm function sourcing to your .bash_profile:

user$ echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profileMulti-User:
The rvm function will be automatically configured for every user on the system if you install as root. This is accomplished by loading /etc/profile.d/rvm.sh on login. Most Linux distributions default to parsing /etc/profile which contains the logic to load all files residing in the /etc/profile.d/ directory. Once you have added the users you want to be able to use RVM to the rvm group, those users MUST log out and back in to gain rvm group membership because group memberships are only evaluated by the operating system at initial login time.

3. Reload shell configuration & test
Close out your current shell or terminal session and open a new one. You may attempt reloading your .bash_profile with the following command:

user$ source .bash_profileHowever, closing out your current shell or terminal and opening a new one is the preferred way for initial installations.

If installation and configuration were successful, RVM should now load whenever you open a new shell. This can be tested by executing the following command which should output 'rvm is a function' as shown below.

user$ type rvm | head -1rvm is a functionFinally, see if there are any dependency requirements for your operating system by running:

user$ rvm requirementsNOTE: Whenever you upgrade RVM in the future, you should always run 'rvm notes' and 'rvm requirements' as this is usually where you will find details on any major changes and/or additional requirements to ensure your installation stays working. Also, you should also run the above command on any fresh installs. This is where all your additionals will be noted making it an extremely important stop on your way to RVM bliss!

Congratulations! You have successfully installed RVM.
Try out your new RVM installation
Below are some examples of how to install and use a Ruby under RVM.

Display a list of all "known" rubies. NOTE: RVM can install many more Rubies not listed.

user$ rvm list known# MRI Rubies...[ruby-]1.8.7[-p334][ruby-]1.8.7-head...[ruby-]1.9.2[-p180][ruby-]1.9.2-headruby-head# JRubyjruby-1.2.0...Install a version of Ruby (eg 1.9.2):

user$ rvm install 1.9.2Installing Ruby from source to: /Users/user/.rvm/rubies/ruby-1.9.2-p180, this may take a while depending on your cpu(s)...ruby-1.9.2-p180 - #fetchingruby-1.9.2-p180 - #downloading ruby-1.9.2-p180, this may take a while depending on your connection......ruby-1.9.2-p180 - #extracting ruby-1.9.2-p180 to /Users/user/.rvm/src/ruby-1.9.2-p180ruby-1.9.2-p180 - #extracted to /Users/user/.rvm/src/ruby-1.9.2-p180ruby-1.9.2-p180 - #configuringruby-1.9.2-p180 - #compilingruby-1.9.2-p180 - #installing...Install of ruby-1.9.2-p180 - #completeUse the newly installed Ruby:

user$ rvm use 1.9.2Using /Users/user/.rvm/gems/ruby-1.9.2-p180Check this worked correctly:

user$ ruby -vruby 1.9.2p180 (2011-02-18 revision 30909) [i386-darwin9.8.0]user$ which rubyUsing /Users/user/.rvm/gems/ruby-1.9.2-p180/bin/rubyOptionally, you can set a version of Ruby to use as the default for new shells. Note that this overrides the 'system' ruby:

user$ rvm use 1.9.2 --defaultEnjoy using RVM!
Where to now?
If you are new to RVM I recommend that you read the basics page. At the end of the basics page there are further links for getting started.

Troubleshooting Your Install
•If you open a new shell and running:

$ type rvm | head -1does not show "rvm is a function", RVM isn't being sourced correctly.

•Ensure that RVM is sourced after any path settings as RVM and manipulates the path. If you don't do this, RVM may not work as expected.

•If you are using GNOME on Red Hat, CentOS or Fedora, ensure that the Run command as login shell option is checked under the Title and Command tab in Profile Preferences. After changing this setting, you may need to exit your console session and start a new one before the changes take affect.

Example RVM bootstrap script
The following script will boostrap git + RVM, assuming that you have curl and sudo installed. The last line of the script will also install several commonly used Rubies for you.

#!/usr/bin/env bash# Install gitbash < <( curl -s https://rvm.beginrescueend.com/install/git )# Install RVMbash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )# Install some Rubiessource "$HOME/.rvm/scripts/rvm"rvm install 1.9.2,rbx,jrubyFor a Multi-User install you would use:

#!/usr/bin/env bash# Install gitsudo bash < <( curl -s https://rvm.beginrescueend.com/install/git )# Install RVMsudo bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )# Install some Rubiessource "/usr/local/rvm/scripts/rvm"rvm install 1.9.2,rbx,jruby
分享到:
评论

相关推荐

    rvm安装资源,版本rvm 1.29.12

    rvm安装资源,版本rvm 1.29.12,rvm 1.29.12-next () by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io],可以直接使用,把文件下载后放到指定位置,然后加载资源就可以用了,加载资源的帖子一会...

    安装rvm,把ruby版本提升至3.0.0

    5. 验证RVM安装:输入`rvm --version`,如果看到RVM的版本号,说明安装成功。 接下来,我们通过RVM安装Ruby 3.0.0: 1. 安装Ruby 3.0.0: ``` rvm install 3.0.0 ``` RVM会自动下载并编译Ruby源代码,这个过程...

    rvm安装ruby2.4.4

    在安装redis集群的时候,我们按照网站上的部署文档需要安装rvm,然后再安装ruby2.4.4会导致ctrl+c功能失效,解决起来也比较恶心。现在这里的rvm的tar包,解压后在rvm/rubies/,就已经有了ruby2.4.4配置一下环境变量...

    RVM安装和使用总结笔记

    安装RVM命令: 代码如下: bash &lt; &lt;( curl http://rvm.beginrescueend.com/releases/rvm-install-head ) 然后修改用户配置文件/Users/username/.profile,你也可以写到别的全局配置里. 添加一行代码: 代码...

    redis_rvm和windows安装文件.gz

    4. 使用curl或wget下载RVM安装脚本: - `curl -sSL https://get.rvm.io | bash -s stable` 或 - `wget -qO- https://get.rvm.io | bash -s stable` 5. 安装完成后,需要重新打开一个新的终端窗口,确保RVM已经被...

    rvm-1.29.4.tar.gz

    然后,添加 RVM 的 GPG 密钥并安装 RVM: ``` \curl -sSL https://get.rvm.io | bash -s stable ``` 2. **更新环境**: 更新环境变量以使 RVM 在当前会话中可用: ``` source ~/.rvm/scripts/rvm ``` 3. **...

    RVM+Ruby1.9.3+Rails3(1-Cygwin 安装配置)

    ### RVM + Ruby 1.9.3 + Rails 3 安装与配置指南 #### 一、前言 在 Windows 7 环境下搭建 Rails 3 开发环境是一项颇具挑战性的任务,尤其是当涉及到 Cygwin、Ruby、Rails 以及一系列其他必要的组件时。本文将详细...

    Mac安装RVM

    RVM全称是ruby version manager,它是一个命令行工具,允许您轻松地安装管理和使用多个ruby环境。 虽然macOS自带了一个ruby环境,但是那是系统自己使用的,所以权限很小,只有system。而/Library目录是root权限,...

    ruby、rvm离线安装文件

    ruby、rvm离线安装文件 可用于 redis5.0 以下版本的集群安装部署,解压后,对相关资源进行编译安装即可,应用安装方法可参考:https://blog.csdn.net/qq_42177284/article/details/128924576#3221__236 ruby 版本号...

    rvm:Ruby环境管理器(RVM)

    如果您需要其他(较新)版本的RVM,请在安装基本版本的RVM之后检查以下“部分。 任何其他操作系统 确保已安装以下必需的软件包: curl gpg2 然后运行: \curl -sSL https://get.rvm.io | bash -s stable 其他...

    ruby、rvm离线安装包

    可用于 redis5.0 以下版本的集群安装部署,解压后,对相关资源进行编译安装即可,应用安装方法可参考:https://blog.csdn.net/qq_42177284/article/details/128924576#3221__236 ruby 版本号为:2.5.1 rvm 版本号为...

    教你如何在ubuntu15.04安装 RVM

    ### 如何在 Ubuntu 15.04 中安装 RVM #### 一、RVM简介 RVM(Ruby Version Manager)是由 Wayne E. Seguin 开发的一款强大的命令行工具,旨在帮助用户轻松地管理和切换 Ruby 不同版本以及相关 Gem 环境。RVM 提供了...

    Ruby版本管理工具RVM的安装和使用教程

    RVM 是一个命令行工具,可以提供一个便捷的多版本 Ruby 环境的管理和切换。 https://rvm.io/ ...修改 RVM 的 Ruby 安装源到国内的 淘宝镜像服务器,这样能提高安装速度 $ sed -i -e 's/ftp\.ruby-lang\.org\/p

    Ruby在Linux上的安装教程.docx

    本文将详细介绍在 Linux 系统上安装 Ruby 的几种常见方式,包括源码安装、自动安装和使用 RVM 进行安装。 #### 二、安装前准备 在开始安装 Ruby 之前,请确保满足以下条件: - 您具备 root 权限,以便能够执行...

    Centos 6.x redmine安装过程全记录

    5. RVM安装Ruby:通过RVM安装了Ruby 2.0.0版本,并设置为默认版本。RVM的安装过程中包括了导入密钥、安装RVM、确认RVM版本以及设置RVM的环境。 6. 安装Rails:使用gem(Ruby的包管理工具)安装了Rails框架。接着...

    rvm-1.29.9.tar.gz

    你可以用 `rvm list` 查看已安装的Ruby版本,用 `rvm use [version]` 切换到指定版本,或者 `rvm install [version]` 来安装新版本。此外,RVM还支持创建和管理gemsets,这是一组独立的Ruby gem(库)集合,可以在不...

    免费Ubuntu系统ruby on rails安装【保姆级教程】

    使用RVM安装指定版本的Ruby,例如3.2.2: ``` rvm install 3.2.2 ``` 6. **设置默认Ruby版本**: 通过以下命令将安装的Ruby版本设为系统默认: ``` rvm use 3.2.2 --default ``` 7. **安装Ruby Gems和...

Global site tag (gtag.js) - Google Analytics