Hi Russel, On 09/08/2016 11:02 AM, Russel Winder wrote: > I can't find a way of causing the chpl-venv to be recreated to check > I'm afraid. > > I had assumed the created virtualenv would deal with all the Python > dependencies, it seems not. I had python3-sphinx installed when I ran > "make chpldoc" for the first time, but not python-sphinx. I have now > installed it – with loud wailing that Python 2 stuff was being > installed:-) chpldoc now runs, but I then had to install the rtd theme > separately. This led me to: > > |> chpldoc factorial.chpl > Running Sphinx v1.4.6 > > Extension error: > Could not import extension sphinxcontrib.chapeldomain (exception: No > module named 'sphinxcontrib') > error: building html output from chpldoc sphinx project
sphinxcontrib.chapeldomain refers to this repository: https://github.com/chapel-lang/sphinxcontrib-chapeldomain You can also force the chpldoc virtual environment to get rebuilt by going into $CHPL_HOME/third-party/chpl-venv and doing a 'make clobber' before your next make of chpldoc. This will probably mean you need to perform a 'make test-venv' as well if you already had one lying around, since we keep both of those in that same directory, but it shouldn't take too long to perform either of these. Thanks, Lydia ------------------------------------------------------------------------------ _______________________________________________ Chapel-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/chapel-users
