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
Post a Comment