我正在尝试在我的Ubuntu计算机上安装RVM。
我已经使用curl来获取RVM,但是一些RVM命令(安装,要求)会抛出此apt-get错误:
There has been error while updating 'apt-get', please give it some time and try again later. For 404 errors check your sources configured in: /etc/apt/sources.list /etc/apt/sources.list.d/*.list
输入rvm | head -1返回
rvm is a function -bash: type: write error: Broken pipe
哪个宝石
/usr/bin/gem
我已经检查了“作为登录shell运行命令”选项
本教程遵循的步骤:
sudo apt-get install curl curl -L get.rvm.io | bash -s stable --auto . ~/.bash_profile rvm requirements - doesn't work properly
我也查看了RVM的官方文档,但看起来非常相似。
有任何想法吗?
更新: 我设法做到了。我禁用了所有第三方ppa URL,并且安装顺利。
安装rvm之前,系统需要一些重要的软件包。在终端上运行:
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev \ curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev \ sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake \ libtool bison subversion nodejs
然后使用以下命令安装rvm:
curl -L https://get.rvm.io | bash -s stable --ruby
现在,您需要在其中.bashrc添加一个设置,以将rvm添加到PATH进行脚本编写。跑:
.bashrc
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"' >> ~/.bashrc
打开一个新终端并测试rvm。