Mid*_*777 4 ruby terminal rvm osx-lion
我正在尝试使用RVM在我的iMac上安装ruby.
我首先键入以下内容:
rvm list known
Run Code Online (Sandbox Code Playgroud)
然后,我使用以下行定位我要安装的版本(我正在遵循建议1.9.2而不是基础1.8.7的指南):
rvm install 1.9.2
Run Code Online (Sandbox Code Playgroud)
然后我明白了:
27698AM:~ butler15$ rvm install 1.9.2
Searching for binary rubies, this might take some time.
No binary rubies available for: osx/10.7/x86_64/ruby-1.9.2-p320.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
Installing requirements for osx, might require sudo password.
Password:
Run Code Online (Sandbox Code Playgroud)
我输入密码,我得到了这个:
DEBUG: Copying /Users/butler15/Library/Preferences/com.apple.dt.Xcode.plist to /opt/local/var/macports/home/Library/Preferences
DEBUG: MacPorts sources location: /opt/local/var/macports/sources/rsync.macports.org/release/tarballs
---> Updating MacPorts base sources using rsync
rsync: failed to connect to rsync.macports.org: Operation timed out (60)
rsync error: error in socket IO (code 10) at /SourceCache/rsync/rsync-42/rsync/clientserver.c(105) [receiver=2.6.9]
Command failed: /usr/bin/rsync -rtzv --delete-after rsync://rsync.macports.org/release/tarballs/base.tar /opt/local/var/macports/sources/rsync.macports.org/release/tarballs
Exit code: 10
DEBUG: Error synchronizing MacPorts sources: command execution failed
while executing
"macports::selfupdate [array get global_options] base_updated"
Error: /opt/local/bin/port: port selfupdate failed: Error synchronizing MacPorts sources: command execution failed
Run Code Online (Sandbox Code Playgroud)
如果我理解正确它正在尝试更新MacPorts但由于落后于代理而失败(或其他什么?)
我尝试过这个指南,但它不起作用:http://samkhan13.wordpress.com/2012/06/15/make-macports-work-behind-proxy/
更多的信息:
我当前版本的RVM和RUBY:http://d.pr/i/H1Eu
我的OSX - 10.7.4
在此先感谢您的帮助 :)
虽然Koji的评论使RVM在代理服务器之后工作,但Macports也需要更新以自动在代理服务器后面工作.
首先,从http://www.macports.org/install.php中的软件包安装macports
然后运行以下命令:
sudo mkdir -p /opt/local/var/macports/sources/svn.macports.org/trunk/dports/
cd /opt/local/var/macports/sources/svn.macports.org/trunk/dports/
sudo svn co http://svn.macports.org/repository/macports/trunk/dports/ .
Run Code Online (Sandbox Code Playgroud)
在/opt/local/etc/macports/sources.conf注释掉
rsync://rsync.macports.org/release/tarballs/ports.tar [default]
Run Code Online (Sandbox Code Playgroud)
使用您喜欢的编辑器,然后在该行下面添加.
file:///opt/local/var/macports/sources/svn.macports.org/trunk/dports/ [default]
Run Code Online (Sandbox Code Playgroud)
然后运行这些命令以便更新并且不会抱怨您的端口没有被编入索引.
sudo port -d sync
sudo portindex
Run Code Online (Sandbox Code Playgroud)
然后,通过改变修改.rvm /脚本/功能/需求/ osx_port selfupdate到sync的requirements_osx_port_update_system()功能.
requirements_osx_port_update_system()
{
#__rvm_try_sudo port -dv selfupdate || return $?
__rvm_try_sudo port -dv sync || return $?
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4830 次 |
| 最近记录: |