3

I am trying to install python package, but when I try it tells me I need a new version of setup tools. I try to install setup tools following the python software instructions which say to use the curl command. When I do this it gives the error that I don't have permission to install in the directory. How can I use the curl command as a sudo user? I have tried several different ways. I have tried sudo easy_install and then the url, and also sudo curl url..

Transformer
  • 3,642
  • 1
  • 22
  • 33
ratrace123
  • 976
  • 4
  • 12
  • 24

1 Answers1

2

This is the right way to use curl and sudo. use sudo after the pipe

curl | sudo

e.g

curl https://www.opscode.com/chef/install.sh | sudo bash

this might help

curl https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | sudo python
Transformer
  • 3,642
  • 1
  • 22
  • 33