Re: [Qgis-developer] error starting qgis (built from source)

2014-07-21 Thread Daniel Scholten
Installing python-gdal solved the issue for me. One could check if the building guide http://htmlpreview.github.io/?https://raw.github.com/qgis/QGIS/master/doc/INSTALL.html#toc6 should be updated, i.e. python-gdal is added to the build dependencies. I use Linux Mint so I don't know if it's

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-14 Thread chris marx
This is a bump, I think my last message got rejected because of a screenshot I included. So both Daniel and I appear to still have the same problem, after building qgis from source, it starts up, but with the following errors: Except that now I found that some plugin libraries are missing. During

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-06 Thread Daniel Scholten
On 05/05/2014 07:16 PM, Larry Shaffer wrote: Hi, On Mon, May 5, 2014 at 10:46 AM, Yves Jacolin yjaco...@free.fr mailto:yjaco...@free.fr wrote: Le lundi 5 mai 2014, 15:57:06 Daniel Scholten a écrit : [..] I've had the same problem and the above worked for me. Except

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread Daniel Scholten
On 05/03/2014 09:46 AM, Yves Jacolin wrote: Le samedi 3 mai 2014, 08:47:30 Nyall Dawson a écrit : Maybe you need to update your LD_LIBRARY_PATH so QGIS or Qt knows of the custom OCI lib path during runtime? Possibly running sudo ldconfig may help? Nyall probably not without adding a new

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread chris marx
Hi Daniel, I still haven't got my install working, any steps in particular that have been suggested that you found make it work for you? Chris- On Mon, May 5, 2014 at 9:57 AM, Daniel Scholten schol...@riseup.net wrote: On 05/03/2014 09:46 AM, Yves Jacolin wrote: Le samedi 3 mai 2014,

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread chris marx
Hi, Ok, some of this is a bit unfamiliar for me, but here goes. So, I ran ldd on the qgis app, and it very clearly shows that that libqgis_core was not found: chrismarx@ubuntu:~/apps/bin$ ldd ./qgis linux-vdso.so.1 = (0x7fff12158000) libqwt-qt4.so.5 = /usr/lib/libqwt-qt4.so.5

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread Yves Jacolin
Le lundi 5 mai 2014, 10:26:34 chris marx a écrit : Hi, Ok, some of this is a bit unfamiliar for me, but here goes. So, I ran ldd on the qgis app, and it very clearly shows that that libqgis_core was not found: chrismarx@ubuntu:~/apps/bin$ ldd ./qgis linux-vdso.so.1 =

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread Yves Jacolin
Le lundi 5 mai 2014, 15:57:06 Daniel Scholten a écrit : [..] I've had the same problem and the above worked for me. Except that now I found that some plugin libraries are missing. During start of QGIS I get a message Unable to load GdalTools plugin. The required osgeo [python-gdal] module is

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread Larry Shaffer
Hi, On Mon, May 5, 2014 at 10:46 AM, Yves Jacolin yjaco...@free.fr wrote: Le lundi 5 mai 2014, 15:57:06 Daniel Scholten a écrit : [..] I've had the same problem and the above worked for me. Except that now I found that some plugin libraries are missing. During start of QGIS I get a

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread chris marx
Yay! Ok, that did it. So, did I do something wrong? After running updatedb, locate found the libraries in /home/chrismarx/apps/lib/ . According to the build instructions, it suggested to create : mkdir -p ${HOME}/apps and build the app into there. Is that where those libraries should have ended

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread Yves Jacolin
ok I understand :) Add /home/chrismarx/apps/lib/ in the /etc/ld.so.conf.d/qgis.conf is not already done and run sudo ldconfig. If you already do such command line, well I don't know what's wrong. Last idea: do you use redhat or something like this? Y. Le lundi 5 mai 2014, 13:21:44 chris marx

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread chris marx
Sorry, I think you misunderstood, the previous commands did work. I can start qgis now! yay! I was asking an additional question -- whether I did something wrong in the first place, or is this what you're expected to do when building qgis? On Mon, May 5, 2014 at 1:32 PM, Yves Jacolin

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread Yves Jacolin
That's great! Yes cmake . command allows you to setup the location where qgis (bin, and lib) will be located. Related to this settings you should adapt it for ld.so.conf.d config file. For me, I install qgis in /usr/local/ which is the default one, in another computer I created other

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread chris marx
Ok, cool. Well, not sure if this is a question for another email thread or not, but now I can at least start the app, I do get the same errors that daniel mentioned earlier I've had the same problem and the above worked for me. Except that now I found that some plugin libraries are missing.

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-03 Thread Yves Jacolin
Le samedi 3 mai 2014, 08:47:30 Nyall Dawson a écrit : Maybe you need to update your LD_LIBRARY_PATH so QGIS or Qt knows of the custom OCI lib path during runtime? Possibly running sudo ldconfig may help? Nyall probably not without adding a new file in /etc/ld.so.conf.d/ for example

[Qgis-developer] error starting qgis (built from source)

2014-05-02 Thread chris marx
I followed the instructions here: https://raw.githubusercontent.com/qgis/QGIS/master/INSTALL and did the build on a clean ubuntu 12.04 64bit vm. the only thing i changed from the vanilla build was to enable WITH_ORACLE. make and make install completed without errors, although i did have to run

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-02 Thread Larry Shaffer
Hi Chris, On Fri, May 2, 2014 at 1:47 PM, chris marx chrism...@gmail.com wrote: I followed the instructions here: https://raw.githubusercontent.com/qgis/QGIS/master/INSTALL and did the build on a clean ubuntu 12.04 64bit vm. the only thing i changed from the vanilla build was to enable

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-02 Thread chris marx
Hi, So those options already had the correct paths, so I didn't need to update them. I have the oracle instant client and sdk libraries installed, and cmake didn't complain about not finding them. Any other ideas? On Fri, May 2, 2014 at 4:29 PM, Larry Shaffer lar...@dakotacarto.comwrote: Hi

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-02 Thread Larry Shaffer
Hi, On Fri, May 2, 2014 at 2:53 PM, chris marx chrism...@gmail.com wrote: Hi, So those options already had the correct paths, so I didn't need to update them. I have the oracle instant client and sdk libraries installed, and cmake didn't complain about not finding them. Any other ideas?

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-02 Thread Nyall Dawson
Maybe you need to update your LD_LIBRARY_PATH so QGIS or Qt knows of the custom OCI lib path during runtime? Possibly running sudo ldconfig may help? Nyall ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org