[QGIS-Developer] Problems running 3.2/3.3

2018-07-08 Thread Patrick Dunford
Good day all I have Qgis 3.3 latest master installed on a desktop and a virtual machine. The desktop is running Debian 9.3 and the virtual machine is running Debian 9.4 The VM runs 3.3 as a new install and has no problems running it, everything seems to work normally. The desktop has a

[QGIS-Developer] Improve GRASS GIS integration in QGIS 3 - Week 8 Report

2018-07-08 Thread Radek Novotný
Hi All, This is my report for Week 8 (July 2 - July 8): What did you get done this week? - Unfortunately, I was all week on camp with my sports team, there was no electricity and the internet. So I was not able to work on the project, I hope I will be able to catch up with the delay

Re: [QGIS-Developer] External python package dependency in plugins

2018-07-08 Thread Luke Pinner
My mistake. Importing pip is not supported and this functionality has been removed in pip>=10 https://pip.pypa.io/en/latest/user_guide/#using-pip-from-your-program On Sun., 8 Jul. 2018, 16:28 Luke Pinner, wrote: > Rather than using a subprocess and needing to figure out which pip/python >

Re: [QGIS-Developer] QGIS Crash - trying to send bugreport...

2018-07-08 Thread Lene Fischer
Hi Jürgen, Thanks a lot :-) Now I can start to report. Kind regards Lene -Oprindelig meddelelse- Fra: QGIS-Developer [mailto:qgis-developer-boun...@lists.osgeo.org] På vegne af Jürgen E. Fischer Sendt: 8. juli 2018 10:14 Til: qgis-developer@lists.osgeo.org Emne: Re: [QGIS-Developer]

Re: [QGIS-Developer] QGIS Crash - trying to send bugreport...

2018-07-08 Thread Jürgen E . Fischer
Hi Lene, On Sun, 08. Jul 2018 at 06:58:45 +, Lene Fischer wrote: > Now I would like to send a bug report, but I have forgot my username and > password - silly me. > I don´t get any help at the login page and I can´t find help anywhere else - > so the simplest thing would be just forgetting

[QGIS-Developer] QGIS Crash - trying to send bugreport...

2018-07-08 Thread Lene Fischer
Hi, Using QGIS 3.2 I suddenly get a lot of crashes - and I´m trying to figure out what might cause the problem. Is it the plugin or is it my data or ... Now I would like to send a bug report, but I have forgot my username and password - silly me. I don´t get any help at the login page and I

Re: [QGIS-Developer] External python package dependency in plugins

2018-07-08 Thread shiva reddy
It does not work in python console of QGIS. pip have __main__() methot that too for internal use. Thanks & Regards Shiva Reddy K. Scientist/Engineer 'SD' Indian Institute of Remote Sensing, Indian Space Research Organisation Department of Space 4-Kalidas Road Dehradun mobile: 8791806093 On

Re: [QGIS-Developer] External python package dependency in plugins

2018-07-08 Thread Luke Pinner
Rather than using a subprocess and needing to figure out which pip/python etc., have you tried importing and using the pip module directly? Something like: import sys try: import matplotlib except: import pippip.main(['install', 'matplotlib'])import matplotlib Luke On Sun., 8

Re: [QGIS-Developer] External python package dependency in plugins

2018-07-08 Thread shiva reddy
Thanks, But it does not work in MacOS Thanks & Regards Shiva Reddy K. Scientist/Engineer 'SC' Indian Institute of Remote Sensing, Indian Space Research Organisation Department of Space 4-Kalidas Road Dehradun mobile: 8791806093 On Sun, Jul 8, 2018 at 11:12 AM Axel Andersson wrote: > Hi, > >