python - Easy_install issues -



python - Easy_install issues -

trying install easy_install (ironic) , not wanting cooperate me. running next command in terminal python2.7

curl https://bootstrap.pypa.io/ez_setup.py -o - | python returns me --> -bash: https://bootstrap.pypa.io/ez_setup.py: no such file or directory

is simple fix?

this should work:

curl https://bootstrap.pypa.io/ez_setup.py -s | python

unless redirected otherwise, curl output received body stdout, not have pass -o - (which should not according docs). should pass -s in order suppress progress meter , errors. pipe straight python. given no other arguments, python determine stdin source of script execute.

python osx easy-install

Comments

Popular posts from this blog

maven fortify plugin : Unable to load build session with ID XXXXX .. See log file for more details -

c# - Primavera WebServices does not return any data -

android - Display emoji panel with genymotion - keyboard/touch input? -