On Wed, Jun 30, 2010 at 03:11:28PM +0200, Andreas Ostermann wrote: > On 06/30/2010 02:52 PM, W. Trevor King wrote: > > On Wed, Jun 30, 2010 at 02:09:10PM +0200, Andreas Ostermann wrote: > >> so I wanted to get the sources directly from the git repository, but > >> after make and make install: > >> > >> a...@farnsworth:~/workspace/be$ make install > >> ... > >> make -C doc html > >> ... > > > > You don't actually need to build the docs to use BE. > > ... > > is running now, however, not building the doc results in: > > error: can't copy 'doc/man/be.1': doesn't exist or not a regular file > make: *** [install] Error 1
Ah, that's because setup.py is looking for the man page and not
finding it because you hadn't built the docs. If you'd built the docs
or commented out the data_files argument in setup.py you wouldn't get
the error.
> For building the doc, I tried this:
>
> > [...]
> > If you don't want general access and only want BE to find those
> > modules, edit doc/conf.py:
> > sys.path.insert(0, os.path.abspath('..'))
> > +sys.path.insert(0, '/usr/share/doc/python-chaco/source/sphinxext/')
> > [...]
>
> resulting in a new error:
>
> Running Sphinx v0.6.4
> ...
> reading sources... [ 13%] libbe/libbe.bug
>
> Sphinx error:
> 'ascii' codec can't encode character u'\xe7' in position 201: ordinal
> not in range(128)
My first guesses are that it's either a Sphinx 0.6.4 issue or a locale
issue. If you're using a UTF-8 locale:
$ locale
LANG=en_US.UTF-8
...
you could try upgrading to a more recent version of Sphinx. Not the
development version (1.0b2), however, because it doesn work with
numpydoc:
http://projects.scipy.org/numpy/ticket/1489
--
This email may be signed or encrypted with GPG (http://www.gnupg.org).
The GPG signature (if present) will be attached as 'signature.asc'.
For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy
My public key is at http://www.physics.drexel.edu/~wking/pubkey.txt
pgpnx2NEy8mSq.pgp
Description: PGP signature
_______________________________________________ Be-devel mailing list [email protected] http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
