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

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -