Domanda

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

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top