声明:我是使用root 帐户安装的。。安装的是 多用户,所以直接安装在 /usr/local/rvm下面
Ubuntu 的 Shell语言用的是Bash Shell
1.参考:rvm.io 官网
直接使用 curl -L get.rvm.io | bash -s stable 命令 是不行的。来自: https://rvm.io/rvm/install/
提示:bash : curl: command not found
1.1安装或开启curl
=》sudo apt-get install curl (会自动安装 libcurl3)
=》sudo apt-get install git-core (顺便也 安装一下了 git)
注明:Curl有一大堆有用的功能,比如:代理、用户登录、FTP上传、http上传、暂停等等,还有一些其他的下载管理工具:wget Gwget这些最常见的 http(s)和ftp下载的工具.
=》再次运行 curl -L get.rvm.io | bash -s stable
提示安装成功,自动安装在 /usr/local/rvm/ 下面,自动创建了system user group : rvm
2.其它的 安装rvm 的命令
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head )
两个 << 中间有空格的。
3.rvm安装ruby的各版本
=》 rvm list (查看版本信息):提示rvm : command not found
4.如何卸载rvm
来自:http://stackoverflow.com/questions/3558656/how-to-remove-rvm-ruby-version-manager-from-my-system
There's a simple command built-in that will pull it:
rvm implode
This will remove the rvm/ directory and all the rubies built within it. In order to remove the final trace of rvm, you need to remove the rvm gem, too:
gem uninstall rvm
If you've made modifications to your PATH you might want to pull those, too. Check your .bashrc, .profile and .bash_profile files, among other things.
You may also have an /etc/rvmrc file, or one in your home directory ~/.rvmrc that may need to be removed as well.
分享到:
相关推荐
需要注意的是,安装完成后,默认情况下 root 用户的 RVM 将被安装在 `/usr/local/rvm` 目录下,而非 root 用户则会安装在其个人目录中。除非有特殊需求,否则推荐非 root 用户安装 RVM,这样可以避免后续因权限问题...
在没有RVM或rbenv的Ubuntu 14.04上的Rails,PostgreSQL带Passenger + Nginx ssh-copy-id -i ~/.ssh/id_rsa.pub root@SERVER scp rails-passenger-postgres-nginx root@SERVER:/root/rails-passenger-postgres-...
- 您具备 root 权限,以便能够执行安装所需的命令。 - 您的 Linux 系统已更新至最新状态。 - 如果您计划使用源码安装方式,则需确保已安装必要的构建工具,如 `gcc`、`make` 等。 #### 三、源码安装 **1. 下载源码...
2.1.4. 安装 ruby 下的 zlib 和 openssl 无需额外安装,Ruby编译时已包含。 2.1.5. 安装 rubygems ```bash curl -L https://get.rvm.io | bash -s stable source ~/.rvm/scripts/rvm rvm install 3.0.3 rvm use ...
使用RVM安装Ruby后,使用`gem install rails`安装Rails,接着安装Puma,执行`gem install puma`。同时,还需要安装`bundler`来管理Gemfile中的依赖,`gem install bundler`。 4. **安装Redmine**: 从Redmine的...
通常,我们可以从官方源码编译安装,或者使用RVM(Ruby Version Manager)来管理多个版本的Ruby。这里我们以源码安装为例: 1. 下载最新版的Ruby源码: ```bash wget ...
需要注意的是,如果系统中同时安装了多个Ruby版本或使用了版本管理工具(如RVM或rbenv),则需要确保这些步骤是针对正在使用的Ruby版本执行的。并且,如果对Ruby进行了重新编译安装,可能还需要重新安装所有依赖该...