Messages in this thread |  | | | From | Kyle Moffett <> | | Subject | Re: Mercurial vs Updated git HOWTO for kernel hackers | | Date | Mon, 27 Jun 2005 15:05:47 -0400 |
| |
On Jun 27, 2005, at 14:31:18, Pavel Machek wrote: > pavel@Elf:/data/tmp/linux-hg$ hg init http://www.kernel.org/hg/ > Traceback (most recent call last): > File "/usr/local/bin/hg", line 11, in ? > from mercurial import commands > ImportError: No module named mercurial
Apparently your Python does not automatically look in /usr/local/lib/ python and you don't have PYTHONPATH=/usr/local/lib/python. Try adding the following to your .bash_profile, then logging out and back in again:
if [ -z "$PYTHONPATH" ]; then PYTHONPATH=/usr/local/lib/python else PYTHONPATH="$PYTHONPATH:/usr/local/lib/python" fi export PYTHONPATH
Cheers, Kyle Moffett
-- Somone asked me why I work on this free (http://www.fsf.org/philosophy/) software stuff and not get a real job. Charles Shultz had the best answer:
"Why do musicians compose symphonies and poets write poems? They do it because life wouldn't have any meaning for them if they didn't. That's why I draw cartoons. It's my life." -- Charles Shultz
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |