Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-04-02 Thread Matti Picus
Note the /home/valentina-t/.local/lib/python2.7 in the error message. This indicates you are using python2.7, not python3.6. Please try using a virtual environment or activating a conda environment. If you need further help please reach out to me personally. Matti On 2/4/19 11:41 am, Mbeng T

Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-04-02 Thread Mbeng Tanyi
Both python --version and python3 --version give Python 3.6.7 On Tue, Apr 2, 2019 at 9:39 AM Hameer Abbasi wrote: > Hi Mbeng! > > What is the output of python --version and python3 --version? It seems to > me that you’re still using Python 2.7. > > You may need to use the command python3 rather

Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-04-02 Thread Hameer Abbasi
Hi Mbeng! What is the output of python --version and python3 --version? It seems to me that you’re still using Python 2.7. You may need to use the command python3 rather than python. Best Regards, Hameer Abbasi > On Tuesday, Apr 02, 2019 at 10:34 AM, Mbeng Tanyi (mailto:valentinate...@gmail.c

Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-04-02 Thread Mbeng Tanyi
Hello I still have a problem with this. I am using sphinx1.8.5 and changed the default python version on my computer to be 3.6 but I get the following error on $ make html ; Traceback (most recent call last): > File "/home/valentina-t/.local/bin/sphinx-build", line 7, in > from sphinx.cmd.

Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-03-31 Thread Matti Picus
On 31/3/19 10:56 pm, Mbeng Tanyi wrote: Hello I also got an error the first time I tried $ make file as follows: mkdir -p build/html build/doctrees LANG=C sphinx-build -b html -WT --keep-going -d build/doctrees source build/html /bin/sh: 1: sphinx-build: not found Makefile:

Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-03-31 Thread Mbeng Tanyi
Hello I also got an error the first time I tried $ make file as follows: > mkdir -p build/html build/doctrees > LANG=C sphinx-build -b html -WT --keep-going -d build/doctrees source > build/html > /bin/sh: 1: sphinx-build: not found > Makefile:123: recipe for target 'html' failed > make: *** [h

Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-03-30 Thread Sanchi Vaishnavi
Hi Sebastian, Thank you, it works perfectly now. I wrongly assumed that I'd installed the latest version. As it happens, conda currently ships the version 1.7.4 of sphinx, as against the latest version 2.0.0. I did this: pip install -U sphinx Best, Sanchi On Sat, Mar 30, 2019 at 5:48 PM Sebas

Re: [Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-03-30 Thread Sebastian Berg
Hi Sanchi, On Sat, 2019-03-30 at 15:58 +0530, Sanchi Vaishnavi wrote: > I was learning to get to $ make html to work. These are the final > steps that I used on my test branch in my numpy repo: > > > $ sphinx-build -b html doc/source builddir > > >> build succeeded, 165 warnings. > > $ make

[Numpy-discussion] Beginner Help: Generating HTML using Sphinx

2019-03-30 Thread Sanchi Vaishnavi
I was learning to get to $ make html to work. These are the final steps that I used on my test branch in my numpy repo: $ sphinx-build -b html doc/source builddir > >> build succeeded, 165 warnings. $ make html >> make: *** No rule to make target `html’. Stop. I checked one of the resultant