Okay I installed texlive 2012, just by following the guides from http://www.tug.org/texlive/.
Now when I downloadend, compiled and installed ipe7, the latest version. Now when I try something, draw/text etc, ipe tells me that it can't find pdflatex. Now I guessed that since I installed it from tug.org and not by a ubuntu package that it is now installed underneath a different directory. Pdflatex is located in the folder /usr/local/texlive/2012/bin/x86_64-linux/
Now I found in the manual that you can use the command flag IPELATEXDIR to point to a different location where pdflatex is located. So I started ipe --IPELATEXDIR=/usr/local/texlive/2012/bin/x86_64-linux/ but it still tells me that it can't find pdflatex?
I tried to find a log file in ~/.ipe/ but only the latex file is located there.
Does anybody got any clue?
pdflatexcompiling normally? Did you insert thetexlivefolder in you$PATHvariable? What is the result ofecho $PATHon the terminal? – Sigur Jul 08 '13 at 22:25/dir/../dir/pdflatex. I will try to add the folder to $PATH variable. Thanks for the hint, hopefully this will solve the problem. – WG- Jul 08 '13 at 22:31$PATHvariable:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/texlive/2011/bin/i386-linux/– Sigur Jul 08 '13 at 22:33PATH=/usr/local/texlive/2012/bin/x86_64-linux/:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games– WG- Jul 08 '13 at 22:41/usr/local/texlive/2012/bin/x86_64-linux/to the path folder? Saved the .bashrc and restarted the terminal? If thats what you mean – WG- Jul 08 '13 at 22:44~/.profilefilePATH=/usr/local/texlive/2013/bin/i386-linux:$PATH; export PATH MANPATH=/usr/local/texlive/2013/texmf-dist/doc/man:$MANPATH; export MANPATH INFOPATH=/usr/local/texlive/2013/texmf-dist/doc/info:$INFOPATH; export INFOPATH– Sigur Jul 08 '13 at 22:48The program 'pdflatex' is currently not installed. You can install it by typing: sudo apt-get install texlive-latex-base. While the correct path where pdflatex is located is for sure included in the PATH folder. – WG- Jul 08 '13 at 23:34texlive-latex-baseand then any program which request it will be work (I guess). Read the section Fake Packages from here http://tex.stackexchange.com/a/95373/14757 – Sigur Jul 08 '13 at 23:37Maybe it is because I'm running 64 bit?
– WG- Jul 09 '13 at 00:02IPELATEXDIRis an environment variable, not a command line option. So settingexport IPELATEXDIR=/usr/local/texlive/2012/bin/x86_64-linuxin your.bashrcmight be the solution (with 2013, when you install the new TeX Live). – egreg Jul 09 '13 at 11:26