Hi all, in lieu of necro'ing a bunch of older threads, I wanted to seek your advice.
My objective is to use a gist created to scrape dribbble.com for PSD files. I have installed Python (3.33), virtualenv (and Pip), and attempted to install the dribbble redis with the command:
The result I get says 'hg' is an unrecognized command:
I tried entering these two consecutive commands before again entering the
command:
But I got the same
It's been suggested I install this:
But I wanted to get a second opinion. Thoughts?
My objective is to use a gist created to scrape dribbble.com for PSD files. I have installed Python (3.33), virtualenv (and Pip), and attempted to install the dribbble redis with the command:
Code:
pip install -e hg+http://bitbucket.org/sjl/python-dribbble#egg=dribbble
The result I get says 'hg' is an unrecognized command:
Code:
Obtaining dribbble from hg+http://bitbucket.org/sjl/python-dribbble#egg=dribbble
Cloning hg http://bitbucket.org/sjl/python-dribbble to ./src/dribbble
Cleaning up...
Cannot find command 'hg'
I tried entering these two consecutive commands before again entering the
Code:
pip install
Code:
USERNAME-MacBook-Pro:Dr_scrape HOMENAME$ export PYTHONPATH=${HOME}/lib/python
USERNAME-MacBook-Pro:Dr_scrape HOMENAME$ export PATH=${HOME}/bin:$PATH
But I got the same
Code:
Cannot find command 'hg'
It's been suggested I install this:
Code:
http://mercurial.selenic.com/wiki/TutorialInstall
But I wanted to get a second opinion. Thoughts?