Re: problem with Python 3.6 + PyX

2017-10-06 Thread skysign
Please install below. in my case, it is resolved. sudo apt install texinfo sudo apt install texlive-binaries 2017년 2월 11일 토요일 오전 8시 49분 36초 UTC+9, stalker5 님의 말: > Yes, I have a Tex engine on my system. > How can i fix the problem with the PATH ? > Even if i execute the .py script directly by

Re: problem with Python 3.6 + PyX

2017-02-10 Thread stalker5
Yes, I have a Tex engine on my system. How can i fix the problem with the PATH ? Even if i execute the .py script directly by python (I mean :not inside a LateX file) pyx need to reach the TeX system ? Is there a config file to fix the PATH ? Where ? Thanks a lot !! Ciao -- Olivier PyX

Re: problem with Python 3.6 + PyX

2017-02-10 Thread Lele Gaifax
stalker5 writes: > I'm have a problem with this little program > ... > raise child_exception_type(errno_num, err_msg) > FileNotFoundError: [Errno 2] No such file or directory: 'tex' PyX requires TeX to render textual glyphs into the image. Do you have it installed? If

problem with Python 3.6 + PyX

2017-02-10 Thread stalker5
Hello everybody ! I'm have a problem with this little program #---début--- from pyx import * g = graph.graphxy(width=8, x=graph.axis.linear(min=-15, max=15)) g.plot(graph.data.function("y(x)=sin(x)/x")) g.writeEPSfile("function") g.writePDFfile("function") g.writeSVGfile("function") #---