Closed ericclemmons closed 11 years ago
Yikes, and it gets worse. Apparently pip install jsonpickle
installs 0.6.1
, whereas huxley needs 0.4.0
:
$ ⮀huxley
Traceback (most recent call last):
File "/usr/local/bin/huxley", line 5, in <module>
from pkg_resources import load_entry_point
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/distribute-0.6.45-py2.7.egg/pkg_resources.py", line 2854, in <module>
parse_requirements(__requires__), Environment()
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/distribute-0.6.45-py2.7.egg/pkg_resources.py", line 594, in resolve
raise DistributionNotFound(req)
pkg_resources.DistributionNotFound: jsonpickle==0.4.0
Ew, seems like I messed up the setup.py file. Will definitely try to get this one fixed, thanks!
Geeze @petehunt! Never thought I'd expect that from you. You're right, that is ewwww...
Any ETA on a fix for this? Not being able to pip install
is sad :(
FYI, for anyone else interested in the steps to install with the dependencies the way they are, here's how I did it:
Install jsonpickle v0.4.0 (i had to use sudo, you may not)
$ sudo pip install jsonpickle==0.4.0
Install the remaining dependencies (again, i had to use sudo, you may not)
$ sudo pip install plac
$ sudo pip install selenium
$ sudo pip install pil
$ sudo pip install huxley
I'll try to cut a new release this week to fix this.
Sent from my iPhone
On Oct 6, 2013, at 3:38 PM, "Kevin Lamping" notifications@github.com<mailto:notifications@github.com> wrote:
FYI, for anyone else interested in the steps to install with the dependencies the way they are, here's how I did it:
$ sudo pip install jsonpickle==0.4.0
$ sudo pip install plac $ sudo pip install selenium $ sudo pip install pil
— Reply to this email directly or view it on GitHubhttps://urldefense.proofpoint.com/v1/url?u=https://github.com/facebook/huxley/issues/22%23issuecomment-25774981&k=ZVNjlDMF0FElm4dQtryO4A%3D%3D%0A&r=qYx6qLphxKhA5vHBqr9vuw%3D%3D%0A&m=XWNZ24MvzfBT0lAhk3D17tqvFcThJESXcfTkUXmpVQY%3D%0A&s=3cbb9665200b59a54ef24a8eed38f57a1e00a127e99bbce2d347aad2365f6cb9.
Fixed in 0.4. Thanks!
pip install huxley
failed, so I had to run the following individually:Finally, I could run:
Want me to add this to the README?