문제

I'm trying to install ruby and rails at once using curl with the following command:

\curl -L https://get.rvm.io | bash -s stable    --rails

However I'm getting the following error

curl: (56) Proxy CONNECT aborted

I'm using Ubuntu 13.10

도움이 되었습니까?

해결책

Try:

unset HTTPS_PROXY

and then proceed with your installation. If it works, find in your ~/.bashrc, ~/.bash_profile or similar line saying something like

export HTTPS_PROXY = 'your_proxy_url'

and delete it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top