<div dir="ltr"><div style>If I run (on an Ubuntu machine) the command:</div><div style>sudo pip install --upgrade distribute<br></div><div style>Everything goes well and the package installs.</div><div style><br></div><div style>
But if I run the same with Python3 with:</div>sudo pip-3.2 install --upgrade distribute<br><div style>I get this:</div><div style><div>"File "setuptools/dist.py", line 103</div><div>   except ValueError, e:</div>
<div>                         ^</div><div> SyntaxError: invalid syntax"</div><div style>I think the problem is that with someone recently forgot to put the parentheses (i.e. "except ValueError, e:" should be "except (ValueError, e):") and therefore this does not work anymore with python3.</div>
<div style><br></div><div style>It should be easy to fix. Furthermore, this problem seems to be widespread within the package.</div><div style><br></div><div style>Giulio</div></div></div>