Re: failure building docs?
Stefan Seefeld <[email protected]>
| Newsgroups | gmane.comp.documentation.synopsis |
|---|---|
| Message-ID | <20DCDD8F0FCED411AC4D001083CF504501AA975A@MTL-EXCHANGE> |
Vicki Brown wrote: > I'm sure this is just something dumb in my environment, but... help? python can't find the Synopsis module (it seems to find an old installation, though). There are a couple of ways to solve this: * use 'python setup.py install [--prefix=...]' to install Synopsis * set the PYTHONPATH to point to your build tree: export PYTHONPATH=build/lib.<platform> as a variant of the second way, you may set the PYTHONPATH to point to the source tree, and then build 'in place': python setup.py build_ext --inplace. Good luck, Stefan