Qt Platform Plugin Windows

Expected behaviour When starting owncloud.exe the application should start running. Actual behaviour The following error is thrown on start: 'owncloud' This application failed to start because it could not find or load the Qt platform plugin 'windows' in '. Available platform plugins are: minimal, windows. Reinstalling the application may fix this problem. 'OK' Note that this error is not thrown (and the OC client runs as expected) when running owncloud as administrator. Reinstalling or Uninstalling + Reinstall did not fix the problem.

Qt Platform Plugin Windows

With Qt, you can reach all your target platforms – desktop & embedded – with one technology and one codebase, minimizing your time-to-market and maintenance burden. Qt is available under a dual-licensing model — you choose what’s right for your needs. Looking into similar problems for Linux QT based programs. Solutions: Copy your AppData Roaming Dropbox bin plugins platform folder, which contain the qwindows.dll file, into the AppData Roaming Dropbox bin folder.

Also used a different location (D: Programs instead of C: Program Files). Steps to reproduce • Double click on 'owncloud.exe' Client configuration Client version: 2.3.3.8250 Operating system: Windows 10 Home 64bit OS language: English Qt version used by client package (Linux only, see also Settings dialog): Client package (From ownCloud or distro) (Linux only): Installation path of client: D: Programs owncloud Logs Logs are not created as owncloud doesn't start (it does create a log file when running as administrator, but no problems there).

I am implementing qgis 3.4.3 in a custom application, but when I instantiate the QgsApplication() class, I receive the error 'Could not find the Qt platform plugin 'Windows' in '. I've attempted using various installs of qgis 3.x+ including the standalone installer and OSGeo4W web installer. I currently am sticking with the OSGeo4W web installer installation. I am using a Python 3.7 installation separate from what comes with OSGeo4W and attempting to integrate qgis functionality. I have followed the instructions in the following QGIS help doc under the section: 'Using PyQGIS in Custom Applications' After attempting to run the script I realized a dll plugin was missing. After some research, I found its the qwindows.dll that qt uses. The qwindows.dll is included in the OSGeo4W installation under: C: OSGeo4W apps Qt5 plugins platforms I changed the QT_PLUGIN_PATH variable on the local command prompt to include the directory above, but the same error prevailed.

I also changed the QT_DEBUG_PLUGINS variable to 1 which printed out the locations Qt is looking for plugins. Nissan consult 3 software cracker. Programmu dlya vzloma adminki v gta samp. Interestingly, it wasn't looking for plugins in the path I specified in the QT_PLUGIN_PATH variable. Add the following environment variables at the beginning of your python script before loading qgis.core: #modify environment variables to find qgis and qt plugins during qgis.core import os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = r'~qgis directory apps Qt5 plugins' os.environ['PATH'] += r';~qgis directory apps qgis bin;~qgis directory apps Qt5 bin' The QT_QPA_PLATFORM_PLUGIN_PATH variable is used by Qt to look up certain drivers including the qwindows.dll. It doesn't know the path to the '~qgis directory apps Qt5 plugins' directory, so you need to provide it before using the QgsApplication module imported from qgis.core. In order for your local version of python to find the qgis.core directory, you will also need to add the following qgis directories to your script before loading qgis.core: sys.path.extend([r'~qgis directory apps qgis python',r'~qgis directory apps Python37 Lib site-packages']).