PyCharm 2019 is not working with QGIS anymoreUsing QGIS modules in standalone application with PySide?How to fix Quickfinder OperationalError: table quickfinder_info already exists?How to define pycharm to understand PYQGIS and GDALPycharm Couldn't recognise QGIS 2.8.11's python 2.7.5 packaging tools. win 7Understanding qgis.core import error: no module named qgis.core?QGIS, Python and GniPlannerFTTH ErrorHow to add a QGIS-specific Python interpreter to PyCharm on Windows?Python not installed in windows based QGIS on a Mac running ParallelsRunning PyQGIS in FME PythonCaller transformer?arcpy SelectLayerByAttribute_management runs in the Python window in ArcGIS Pro, but fails to run from Spyder or PyCharm

Is it inappropriate for a student to attend their mentor's dissertation defense?

Short story with a alien planet, government officials must wear exploding medallions

Detention in 1997

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

In 'Revenger,' what does 'cove' come from?

Should I cover my bicycle overnight while bikepacking?

How to tell a function to use the default argument values?

What method can I use to design a dungeon difficult enough that the PCs can't make it through without killing them?

Plagiarism or not?

Personal Teleportation: From Rags to Riches

Im going to France and my passport expires June 19th

How would I stat a creature to be immune to everything but the Magic Missile spell? (just for fun)

What does “the session was packed” mean in this context?

Avoiding direct proof while writing proof by induction

What mechanic is there to disable a threat instead of killing it?

Is it possible to create a QR code using text?

How badly should I try to prevent a user from XSSing themselves?

How seriously should I take size and weight limits of hand luggage?

Gatling : Performance testing tool

How do conventional missiles fly?

How to prevent "they're falling in love" trope

Why is consensus so controversial in Britain?

How can I determine if the org that I'm currently connected to is a scratch org?

What is a romance in Latin?



PyCharm 2019 is not working with QGIS anymore


Using QGIS modules in standalone application with PySide?How to fix Quickfinder OperationalError: table quickfinder_info already exists?How to define pycharm to understand PYQGIS and GDALPycharm Couldn't recognise QGIS 2.8.11's python 2.7.5 packaging tools. win 7Understanding qgis.core import error: no module named qgis.core?QGIS, Python and GniPlannerFTTH ErrorHow to add a QGIS-specific Python interpreter to PyCharm on Windows?Python not installed in windows based QGIS on a Mac running ParallelsRunning PyQGIS in FME PythonCaller transformer?arcpy SelectLayerByAttribute_management runs in the Python window in ArcGIS Pro, but fails to run from Spyder or PyCharm













6















Since the update to PyCharm 2019 I am unable to load the QGIS Python modules.
I can not use auto completion either.
I already deleted the cache (by invalidating the cache in PyCharm and also by deleting the "system" folder in the user settings directory), nothing seems to work.



When starting the Python console inside of PyCharm and typing "import qgis.core", I get the following error:



Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
File "C:OSGEO4~1appsqgis-ltrpythonqgiscore__init__.py", line 27, in <module>
from qgis._core import *
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.


Something seems to be broken, in PyCharm 2018.3 everything was ok. The sys.path environments and interpreter settings seem to be correct:



['C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGEO4~1\apps\qgis-ltr\python',
'C:\OSGEO4~1\apps\qgis-ltr\python\plugins',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\third_party\thriftpy',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGeo4W64\apps\Python37\python37.zip',
'C:\OSGEO4~1\apps\Python37\DLLs',
'C:\OSGEO4~1\apps\Python37\lib',
'C:\OSGeo4W64\apps\Python37',
'C:\OSGEO4~1\apps\Python37',
'C:\OSGEO4~1\apps\Python37\lib\site-packages',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32\lib',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\Pythonwin']


Has anyone updated PyCharm to 2019 and can confirm this?
I also reinstalled the whole QGIS installation, but nothing seems to work.



It looks like the DLLs containing the stubs are incompatible now?



My bat for starting PyCharm looks like this:



@echo off
SET OSGEO4W_ROOT=C:OSGeo4W64
call "%OSGEO4W_ROOT%"bino4w_env.bat
call "%OSGEO4W_ROOT%"appsgrassgrass-7.4.2etcenv.bat
@echo off
path %PATH%;%OSGEO4W_ROOT%appsqgisbin
path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.4.2lib
path %PATH%;%OSGEO4W_ROOT%appsQt5bin
path %PATH%;%OSGEO4W_ROOT%appsPython37Scripts
path %PATH%;C:Program FilesDockerDockerResourcesbin
path %PATH%;C:Program Files7-Zip

set QT_PLUGIN_PATH=C:OSGeo4W64appsQt5plugins

set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpythonplugins
set PYTHONHOME=%OSGEO4W_ROOT%appsPython37

start "PyCharm aware of Quantum GIS" /B "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe" %*









share|improve this question
























  • Show me your *.bat file that you use to run PyCharm, compatible with QGIS.

    – Mr. Che
    2 days ago












  • C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe points to your new PyCharm 2019?

    – Mr. Che
    2 days ago












  • yes it does.. PyCharm is starting, but it seems to be unable to load the qgis DLLs

    – TheGrudge
    2 days ago











  • I tried to set the PYTHONHOME in C:OSGeo4W64etcinipython-core.bat to C:OSGeo4W64appsPython37 as well, but nothing seems to work.

    – TheGrudge
    2 days ago











  • I used to have such problems with DLLs, but with additional asyncio libraries. I found that I installed double identical libraries in the root directory C:OSGeo4W64lib and the side directory lib C:OSGeo4W64appsPython37lib. After removing the side lib installation (using PyCharm), the problem was resolved. But your problem is not identical.

    – Mr. Che
    2 days ago
















6















Since the update to PyCharm 2019 I am unable to load the QGIS Python modules.
I can not use auto completion either.
I already deleted the cache (by invalidating the cache in PyCharm and also by deleting the "system" folder in the user settings directory), nothing seems to work.



When starting the Python console inside of PyCharm and typing "import qgis.core", I get the following error:



Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
File "C:OSGEO4~1appsqgis-ltrpythonqgiscore__init__.py", line 27, in <module>
from qgis._core import *
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.


Something seems to be broken, in PyCharm 2018.3 everything was ok. The sys.path environments and interpreter settings seem to be correct:



['C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGEO4~1\apps\qgis-ltr\python',
'C:\OSGEO4~1\apps\qgis-ltr\python\plugins',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\third_party\thriftpy',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGeo4W64\apps\Python37\python37.zip',
'C:\OSGEO4~1\apps\Python37\DLLs',
'C:\OSGEO4~1\apps\Python37\lib',
'C:\OSGeo4W64\apps\Python37',
'C:\OSGEO4~1\apps\Python37',
'C:\OSGEO4~1\apps\Python37\lib\site-packages',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32\lib',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\Pythonwin']


Has anyone updated PyCharm to 2019 and can confirm this?
I also reinstalled the whole QGIS installation, but nothing seems to work.



It looks like the DLLs containing the stubs are incompatible now?



My bat for starting PyCharm looks like this:



@echo off
SET OSGEO4W_ROOT=C:OSGeo4W64
call "%OSGEO4W_ROOT%"bino4w_env.bat
call "%OSGEO4W_ROOT%"appsgrassgrass-7.4.2etcenv.bat
@echo off
path %PATH%;%OSGEO4W_ROOT%appsqgisbin
path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.4.2lib
path %PATH%;%OSGEO4W_ROOT%appsQt5bin
path %PATH%;%OSGEO4W_ROOT%appsPython37Scripts
path %PATH%;C:Program FilesDockerDockerResourcesbin
path %PATH%;C:Program Files7-Zip

set QT_PLUGIN_PATH=C:OSGeo4W64appsQt5plugins

set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpythonplugins
set PYTHONHOME=%OSGEO4W_ROOT%appsPython37

start "PyCharm aware of Quantum GIS" /B "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe" %*









share|improve this question
























  • Show me your *.bat file that you use to run PyCharm, compatible with QGIS.

    – Mr. Che
    2 days ago












  • C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe points to your new PyCharm 2019?

    – Mr. Che
    2 days ago












  • yes it does.. PyCharm is starting, but it seems to be unable to load the qgis DLLs

    – TheGrudge
    2 days ago











  • I tried to set the PYTHONHOME in C:OSGeo4W64etcinipython-core.bat to C:OSGeo4W64appsPython37 as well, but nothing seems to work.

    – TheGrudge
    2 days ago











  • I used to have such problems with DLLs, but with additional asyncio libraries. I found that I installed double identical libraries in the root directory C:OSGeo4W64lib and the side directory lib C:OSGeo4W64appsPython37lib. After removing the side lib installation (using PyCharm), the problem was resolved. But your problem is not identical.

    – Mr. Che
    2 days ago














6












6








6


3






Since the update to PyCharm 2019 I am unable to load the QGIS Python modules.
I can not use auto completion either.
I already deleted the cache (by invalidating the cache in PyCharm and also by deleting the "system" folder in the user settings directory), nothing seems to work.



When starting the Python console inside of PyCharm and typing "import qgis.core", I get the following error:



Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
File "C:OSGEO4~1appsqgis-ltrpythonqgiscore__init__.py", line 27, in <module>
from qgis._core import *
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.


Something seems to be broken, in PyCharm 2018.3 everything was ok. The sys.path environments and interpreter settings seem to be correct:



['C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGEO4~1\apps\qgis-ltr\python',
'C:\OSGEO4~1\apps\qgis-ltr\python\plugins',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\third_party\thriftpy',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGeo4W64\apps\Python37\python37.zip',
'C:\OSGEO4~1\apps\Python37\DLLs',
'C:\OSGEO4~1\apps\Python37\lib',
'C:\OSGeo4W64\apps\Python37',
'C:\OSGEO4~1\apps\Python37',
'C:\OSGEO4~1\apps\Python37\lib\site-packages',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32\lib',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\Pythonwin']


Has anyone updated PyCharm to 2019 and can confirm this?
I also reinstalled the whole QGIS installation, but nothing seems to work.



It looks like the DLLs containing the stubs are incompatible now?



My bat for starting PyCharm looks like this:



@echo off
SET OSGEO4W_ROOT=C:OSGeo4W64
call "%OSGEO4W_ROOT%"bino4w_env.bat
call "%OSGEO4W_ROOT%"appsgrassgrass-7.4.2etcenv.bat
@echo off
path %PATH%;%OSGEO4W_ROOT%appsqgisbin
path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.4.2lib
path %PATH%;%OSGEO4W_ROOT%appsQt5bin
path %PATH%;%OSGEO4W_ROOT%appsPython37Scripts
path %PATH%;C:Program FilesDockerDockerResourcesbin
path %PATH%;C:Program Files7-Zip

set QT_PLUGIN_PATH=C:OSGeo4W64appsQt5plugins

set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpythonplugins
set PYTHONHOME=%OSGEO4W_ROOT%appsPython37

start "PyCharm aware of Quantum GIS" /B "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe" %*









share|improve this question
















Since the update to PyCharm 2019 I am unable to load the QGIS Python modules.
I can not use auto completion either.
I already deleted the cache (by invalidating the cache in PyCharm and also by deleting the "system" folder in the user settings directory), nothing seems to work.



When starting the Python console inside of PyCharm and typing "import qgis.core", I get the following error:



Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
File "C:OSGEO4~1appsqgis-ltrpythonqgiscore__init__.py", line 27, in <module>
from qgis._core import *
File "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2helperspydev_pydev_bundlepydev_import_hook.py", line 21, in do_import
module = self._system_import(name, *args, **kwargs)
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.


Something seems to be broken, in PyCharm 2018.3 everything was ok. The sys.path environments and interpreter settings seem to be correct:



['C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGEO4~1\apps\qgis-ltr\python',
'C:\OSGEO4~1\apps\qgis-ltr\python\plugins',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\third_party\thriftpy',
'C:\Program Files\JetBrains\PyCharm Community Edition '
'2018.2.2\helpers\pydev',
'C:\OSGeo4W64\apps\Python37\python37.zip',
'C:\OSGEO4~1\apps\Python37\DLLs',
'C:\OSGEO4~1\apps\Python37\lib',
'C:\OSGeo4W64\apps\Python37',
'C:\OSGEO4~1\apps\Python37',
'C:\OSGEO4~1\apps\Python37\lib\site-packages',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\win32\lib',
'C:\OSGEO4~1\apps\Python37\lib\site-packages\Pythonwin']


Has anyone updated PyCharm to 2019 and can confirm this?
I also reinstalled the whole QGIS installation, but nothing seems to work.



It looks like the DLLs containing the stubs are incompatible now?



My bat for starting PyCharm looks like this:



@echo off
SET OSGEO4W_ROOT=C:OSGeo4W64
call "%OSGEO4W_ROOT%"bino4w_env.bat
call "%OSGEO4W_ROOT%"appsgrassgrass-7.4.2etcenv.bat
@echo off
path %PATH%;%OSGEO4W_ROOT%appsqgisbin
path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.4.2lib
path %PATH%;%OSGEO4W_ROOT%appsQt5bin
path %PATH%;%OSGEO4W_ROOT%appsPython37Scripts
path %PATH%;C:Program FilesDockerDockerResourcesbin
path %PATH%;C:Program Files7-Zip

set QT_PLUGIN_PATH=C:OSGeo4W64appsQt5plugins

set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
set PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpythonplugins
set PYTHONHOME=%OSGEO4W_ROOT%appsPython37

start "PyCharm aware of Quantum GIS" /B "C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe" %*






pyqgis pyqgis-3 windows-10 pycharm






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 days ago









Vince

14.8k32849




14.8k32849










asked 2 days ago









TheGrudgeTheGrudge

584




584












  • Show me your *.bat file that you use to run PyCharm, compatible with QGIS.

    – Mr. Che
    2 days ago












  • C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe points to your new PyCharm 2019?

    – Mr. Che
    2 days ago












  • yes it does.. PyCharm is starting, but it seems to be unable to load the qgis DLLs

    – TheGrudge
    2 days ago











  • I tried to set the PYTHONHOME in C:OSGeo4W64etcinipython-core.bat to C:OSGeo4W64appsPython37 as well, but nothing seems to work.

    – TheGrudge
    2 days ago











  • I used to have such problems with DLLs, but with additional asyncio libraries. I found that I installed double identical libraries in the root directory C:OSGeo4W64lib and the side directory lib C:OSGeo4W64appsPython37lib. After removing the side lib installation (using PyCharm), the problem was resolved. But your problem is not identical.

    – Mr. Che
    2 days ago


















  • Show me your *.bat file that you use to run PyCharm, compatible with QGIS.

    – Mr. Che
    2 days ago












  • C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe points to your new PyCharm 2019?

    – Mr. Che
    2 days ago












  • yes it does.. PyCharm is starting, but it seems to be unable to load the qgis DLLs

    – TheGrudge
    2 days ago











  • I tried to set the PYTHONHOME in C:OSGeo4W64etcinipython-core.bat to C:OSGeo4W64appsPython37 as well, but nothing seems to work.

    – TheGrudge
    2 days ago











  • I used to have such problems with DLLs, but with additional asyncio libraries. I found that I installed double identical libraries in the root directory C:OSGeo4W64lib and the side directory lib C:OSGeo4W64appsPython37lib. After removing the side lib installation (using PyCharm), the problem was resolved. But your problem is not identical.

    – Mr. Che
    2 days ago

















Show me your *.bat file that you use to run PyCharm, compatible with QGIS.

– Mr. Che
2 days ago






Show me your *.bat file that you use to run PyCharm, compatible with QGIS.

– Mr. Che
2 days ago














C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe points to your new PyCharm 2019?

– Mr. Che
2 days ago






C:Program FilesJetBrainsPyCharm Community Edition 2018.2.2binpycharm64.exe points to your new PyCharm 2019?

– Mr. Che
2 days ago














yes it does.. PyCharm is starting, but it seems to be unable to load the qgis DLLs

– TheGrudge
2 days ago





yes it does.. PyCharm is starting, but it seems to be unable to load the qgis DLLs

– TheGrudge
2 days ago













I tried to set the PYTHONHOME in C:OSGeo4W64etcinipython-core.bat to C:OSGeo4W64appsPython37 as well, but nothing seems to work.

– TheGrudge
2 days ago





I tried to set the PYTHONHOME in C:OSGeo4W64etcinipython-core.bat to C:OSGeo4W64appsPython37 as well, but nothing seems to work.

– TheGrudge
2 days ago













I used to have such problems with DLLs, but with additional asyncio libraries. I found that I installed double identical libraries in the root directory C:OSGeo4W64lib and the side directory lib C:OSGeo4W64appsPython37lib. After removing the side lib installation (using PyCharm), the problem was resolved. But your problem is not identical.

– Mr. Che
2 days ago






I used to have such problems with DLLs, but with additional asyncio libraries. I found that I installed double identical libraries in the root directory C:OSGeo4W64lib and the side directory lib C:OSGeo4W64appsPython37lib. After removing the side lib installation (using PyCharm), the problem was resolved. But your problem is not identical.

– Mr. Che
2 days ago











2 Answers
2






active

oldest

votes


















1














I use such *.cmd file (different than yours) to start PyCharm. Try to use it.



@ECHO off

set OSGEO4W_ROOT=C:OSGeo4W64

call "%OSGEO4W_ROOT%bino4w_env.bat"
call "%OSGEO4W_ROOT%binqt5_env.bat"
call "%OSGEO4W_ROOT%binpy3_env.bat"

path %OSGEO4W_ROOT%appsqgisbin;%PATH%
set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

set GDAL_FILENAME_IS_UTF8=YES

set VSI_CACHE=TRUE
set VSI_CACHE_SIZE=1000000
set QT_PLUGIN_PATH=%OSGEO4W_ROOT%appsqgisqtplugins;%OSGEO4W_ROOT%appsqt5plugins

SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.3binpycharm64.exe"

set PYTHONPATH=%OSGEO4W_ROOT%appsqgispython
set PYTHONHOME=%OSGEO4W_ROOT%appsPython37
set PYTHONPATH=%OSGEO4W_ROOT%appsPython37libsite-packages;%PYTHONPATH%

set QT_QPA_PLATFORM_PLUGIN_PATH=%OSGEO4W_ROOT%appsQt5pluginsplatforms
set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

start "PyCharm aware of QGIS" /B %PYCHARM% %*





share|improve this answer























  • I took your bat file and only changed the path to pycharm, but unfortunately it is not working. I invalidated the cache again and re-indexed the project, but the QGIS imports are not working (the same DLL load error)

    – TheGrudge
    2 days ago











  • could this be a problem: PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 sys.platform 'win32' I've just seen that the python console seems to think it is running on win32

    – TheGrudge
    2 days ago












  • @user782457 Here is my python startup message (same as yours): PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32

    – Mr. Che
    2 days ago












  • yeah I guess Python under Windows is not telling you the correct architecture, there seems to be other modules that can print the correct information. Anyway I installed QGIS 3.4.6 with the netinstaller and PyCharm 2019 on a new machine, and I'm still unable to load the DLLs. So it doesn't seem to be a problem with my installation.

    – TheGrudge
    yesterday



















0














I have the same issue :



from PyQt5 import QtGui, QtWidgets, uic
ImportError: DLL load failed: Le module spécifié est introuvable.
from qgis.core import QgsVectorLayer
ImportError: DLL load failed: Le module spécifié est introuvable.


My configuration :
QGIS version 3.4.6-Madeira
PyCharm Community 2018.3



My .bat to run PyCharm :



@echo off

SET OSGEO4W_ROOT=C:Program FilesQGIS 3.4
SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.2.6binpycharm.exe"

CALL %OSGEO4W_ROOT%bino4w_env.bat
CALL %OSGEO4W_ROOT%appsgrassgrass-7.0.5etcenv.bat

path %PATH%;%OSGEO4W_ROOT%appsqgisbin
path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.0.5lib

SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsbin
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgispython
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Scripts
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Lib
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Libsite-packages
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37DLLs
SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
SET QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

start "PyCharm aware of QGIS" /B %PYCHARM% %*


Any idea ?






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "79"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317332%2fpycharm-2019-is-not-working-with-qgis-anymore%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    I use such *.cmd file (different than yours) to start PyCharm. Try to use it.



    @ECHO off

    set OSGEO4W_ROOT=C:OSGeo4W64

    call "%OSGEO4W_ROOT%bino4w_env.bat"
    call "%OSGEO4W_ROOT%binqt5_env.bat"
    call "%OSGEO4W_ROOT%binpy3_env.bat"

    path %OSGEO4W_ROOT%appsqgisbin;%PATH%
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    set GDAL_FILENAME_IS_UTF8=YES

    set VSI_CACHE=TRUE
    set VSI_CACHE_SIZE=1000000
    set QT_PLUGIN_PATH=%OSGEO4W_ROOT%appsqgisqtplugins;%OSGEO4W_ROOT%appsqt5plugins

    SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.3binpycharm64.exe"

    set PYTHONPATH=%OSGEO4W_ROOT%appsqgispython
    set PYTHONHOME=%OSGEO4W_ROOT%appsPython37
    set PYTHONPATH=%OSGEO4W_ROOT%appsPython37libsite-packages;%PYTHONPATH%

    set QT_QPA_PLATFORM_PLUGIN_PATH=%OSGEO4W_ROOT%appsQt5pluginsplatforms
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    start "PyCharm aware of QGIS" /B %PYCHARM% %*





    share|improve this answer























    • I took your bat file and only changed the path to pycharm, but unfortunately it is not working. I invalidated the cache again and re-indexed the project, but the QGIS imports are not working (the same DLL load error)

      – TheGrudge
      2 days ago











    • could this be a problem: PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 sys.platform 'win32' I've just seen that the python console seems to think it is running on win32

      – TheGrudge
      2 days ago












    • @user782457 Here is my python startup message (same as yours): PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32

      – Mr. Che
      2 days ago












    • yeah I guess Python under Windows is not telling you the correct architecture, there seems to be other modules that can print the correct information. Anyway I installed QGIS 3.4.6 with the netinstaller and PyCharm 2019 on a new machine, and I'm still unable to load the DLLs. So it doesn't seem to be a problem with my installation.

      – TheGrudge
      yesterday
















    1














    I use such *.cmd file (different than yours) to start PyCharm. Try to use it.



    @ECHO off

    set OSGEO4W_ROOT=C:OSGeo4W64

    call "%OSGEO4W_ROOT%bino4w_env.bat"
    call "%OSGEO4W_ROOT%binqt5_env.bat"
    call "%OSGEO4W_ROOT%binpy3_env.bat"

    path %OSGEO4W_ROOT%appsqgisbin;%PATH%
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    set GDAL_FILENAME_IS_UTF8=YES

    set VSI_CACHE=TRUE
    set VSI_CACHE_SIZE=1000000
    set QT_PLUGIN_PATH=%OSGEO4W_ROOT%appsqgisqtplugins;%OSGEO4W_ROOT%appsqt5plugins

    SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.3binpycharm64.exe"

    set PYTHONPATH=%OSGEO4W_ROOT%appsqgispython
    set PYTHONHOME=%OSGEO4W_ROOT%appsPython37
    set PYTHONPATH=%OSGEO4W_ROOT%appsPython37libsite-packages;%PYTHONPATH%

    set QT_QPA_PLATFORM_PLUGIN_PATH=%OSGEO4W_ROOT%appsQt5pluginsplatforms
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    start "PyCharm aware of QGIS" /B %PYCHARM% %*





    share|improve this answer























    • I took your bat file and only changed the path to pycharm, but unfortunately it is not working. I invalidated the cache again and re-indexed the project, but the QGIS imports are not working (the same DLL load error)

      – TheGrudge
      2 days ago











    • could this be a problem: PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 sys.platform 'win32' I've just seen that the python console seems to think it is running on win32

      – TheGrudge
      2 days ago












    • @user782457 Here is my python startup message (same as yours): PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32

      – Mr. Che
      2 days ago












    • yeah I guess Python under Windows is not telling you the correct architecture, there seems to be other modules that can print the correct information. Anyway I installed QGIS 3.4.6 with the netinstaller and PyCharm 2019 on a new machine, and I'm still unable to load the DLLs. So it doesn't seem to be a problem with my installation.

      – TheGrudge
      yesterday














    1












    1








    1







    I use such *.cmd file (different than yours) to start PyCharm. Try to use it.



    @ECHO off

    set OSGEO4W_ROOT=C:OSGeo4W64

    call "%OSGEO4W_ROOT%bino4w_env.bat"
    call "%OSGEO4W_ROOT%binqt5_env.bat"
    call "%OSGEO4W_ROOT%binpy3_env.bat"

    path %OSGEO4W_ROOT%appsqgisbin;%PATH%
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    set GDAL_FILENAME_IS_UTF8=YES

    set VSI_CACHE=TRUE
    set VSI_CACHE_SIZE=1000000
    set QT_PLUGIN_PATH=%OSGEO4W_ROOT%appsqgisqtplugins;%OSGEO4W_ROOT%appsqt5plugins

    SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.3binpycharm64.exe"

    set PYTHONPATH=%OSGEO4W_ROOT%appsqgispython
    set PYTHONHOME=%OSGEO4W_ROOT%appsPython37
    set PYTHONPATH=%OSGEO4W_ROOT%appsPython37libsite-packages;%PYTHONPATH%

    set QT_QPA_PLATFORM_PLUGIN_PATH=%OSGEO4W_ROOT%appsQt5pluginsplatforms
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    start "PyCharm aware of QGIS" /B %PYCHARM% %*





    share|improve this answer













    I use such *.cmd file (different than yours) to start PyCharm. Try to use it.



    @ECHO off

    set OSGEO4W_ROOT=C:OSGeo4W64

    call "%OSGEO4W_ROOT%bino4w_env.bat"
    call "%OSGEO4W_ROOT%binqt5_env.bat"
    call "%OSGEO4W_ROOT%binpy3_env.bat"

    path %OSGEO4W_ROOT%appsqgisbin;%PATH%
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    set GDAL_FILENAME_IS_UTF8=YES

    set VSI_CACHE=TRUE
    set VSI_CACHE_SIZE=1000000
    set QT_PLUGIN_PATH=%OSGEO4W_ROOT%appsqgisqtplugins;%OSGEO4W_ROOT%appsqt5plugins

    SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.3binpycharm64.exe"

    set PYTHONPATH=%OSGEO4W_ROOT%appsqgispython
    set PYTHONHOME=%OSGEO4W_ROOT%appsPython37
    set PYTHONPATH=%OSGEO4W_ROOT%appsPython37libsite-packages;%PYTHONPATH%

    set QT_QPA_PLATFORM_PLUGIN_PATH=%OSGEO4W_ROOT%appsQt5pluginsplatforms
    set QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    start "PyCharm aware of QGIS" /B %PYCHARM% %*






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered 2 days ago









    Mr. CheMr. Che

    1,589528




    1,589528












    • I took your bat file and only changed the path to pycharm, but unfortunately it is not working. I invalidated the cache again and re-indexed the project, but the QGIS imports are not working (the same DLL load error)

      – TheGrudge
      2 days ago











    • could this be a problem: PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 sys.platform 'win32' I've just seen that the python console seems to think it is running on win32

      – TheGrudge
      2 days ago












    • @user782457 Here is my python startup message (same as yours): PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32

      – Mr. Che
      2 days ago












    • yeah I guess Python under Windows is not telling you the correct architecture, there seems to be other modules that can print the correct information. Anyway I installed QGIS 3.4.6 with the netinstaller and PyCharm 2019 on a new machine, and I'm still unable to load the DLLs. So it doesn't seem to be a problem with my installation.

      – TheGrudge
      yesterday


















    • I took your bat file and only changed the path to pycharm, but unfortunately it is not working. I invalidated the cache again and re-indexed the project, but the QGIS imports are not working (the same DLL load error)

      – TheGrudge
      2 days ago











    • could this be a problem: PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 sys.platform 'win32' I've just seen that the python console seems to think it is running on win32

      – TheGrudge
      2 days ago












    • @user782457 Here is my python startup message (same as yours): PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32

      – Mr. Che
      2 days ago












    • yeah I guess Python under Windows is not telling you the correct architecture, there seems to be other modules that can print the correct information. Anyway I installed QGIS 3.4.6 with the netinstaller and PyCharm 2019 on a new machine, and I'm still unable to load the DLLs. So it doesn't seem to be a problem with my installation.

      – TheGrudge
      yesterday

















    I took your bat file and only changed the path to pycharm, but unfortunately it is not working. I invalidated the cache again and re-indexed the project, but the QGIS imports are not working (the same DLL load error)

    – TheGrudge
    2 days ago





    I took your bat file and only changed the path to pycharm, but unfortunately it is not working. I invalidated the cache again and re-indexed the project, but the QGIS imports are not working (the same DLL load error)

    – TheGrudge
    2 days ago













    could this be a problem: PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 sys.platform 'win32' I've just seen that the python console seems to think it is running on win32

    – TheGrudge
    2 days ago






    could this be a problem: PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32 sys.platform 'win32' I've just seen that the python console seems to think it is running on win32

    – TheGrudge
    2 days ago














    @user782457 Here is my python startup message (same as yours): PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32

    – Mr. Che
    2 days ago






    @user782457 Here is my python startup message (same as yours): PyDev console: starting. Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32

    – Mr. Che
    2 days ago














    yeah I guess Python under Windows is not telling you the correct architecture, there seems to be other modules that can print the correct information. Anyway I installed QGIS 3.4.6 with the netinstaller and PyCharm 2019 on a new machine, and I'm still unable to load the DLLs. So it doesn't seem to be a problem with my installation.

    – TheGrudge
    yesterday






    yeah I guess Python under Windows is not telling you the correct architecture, there seems to be other modules that can print the correct information. Anyway I installed QGIS 3.4.6 with the netinstaller and PyCharm 2019 on a new machine, and I'm still unable to load the DLLs. So it doesn't seem to be a problem with my installation.

    – TheGrudge
    yesterday














    0














    I have the same issue :



    from PyQt5 import QtGui, QtWidgets, uic
    ImportError: DLL load failed: Le module spécifié est introuvable.
    from qgis.core import QgsVectorLayer
    ImportError: DLL load failed: Le module spécifié est introuvable.


    My configuration :
    QGIS version 3.4.6-Madeira
    PyCharm Community 2018.3



    My .bat to run PyCharm :



    @echo off

    SET OSGEO4W_ROOT=C:Program FilesQGIS 3.4
    SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.2.6binpycharm.exe"

    CALL %OSGEO4W_ROOT%bino4w_env.bat
    CALL %OSGEO4W_ROOT%appsgrassgrass-7.0.5etcenv.bat

    path %PATH%;%OSGEO4W_ROOT%appsqgisbin
    path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.0.5lib

    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsbin
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgispython
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Scripts
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Lib
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Libsite-packages
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37DLLs
    SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
    SET QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

    start "PyCharm aware of QGIS" /B %PYCHARM% %*


    Any idea ?






    share|improve this answer



























      0














      I have the same issue :



      from PyQt5 import QtGui, QtWidgets, uic
      ImportError: DLL load failed: Le module spécifié est introuvable.
      from qgis.core import QgsVectorLayer
      ImportError: DLL load failed: Le module spécifié est introuvable.


      My configuration :
      QGIS version 3.4.6-Madeira
      PyCharm Community 2018.3



      My .bat to run PyCharm :



      @echo off

      SET OSGEO4W_ROOT=C:Program FilesQGIS 3.4
      SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.2.6binpycharm.exe"

      CALL %OSGEO4W_ROOT%bino4w_env.bat
      CALL %OSGEO4W_ROOT%appsgrassgrass-7.0.5etcenv.bat

      path %PATH%;%OSGEO4W_ROOT%appsqgisbin
      path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.0.5lib

      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsbin
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgispython
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Scripts
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Lib
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Libsite-packages
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37DLLs
      SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
      SET QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

      start "PyCharm aware of QGIS" /B %PYCHARM% %*


      Any idea ?






      share|improve this answer

























        0












        0








        0







        I have the same issue :



        from PyQt5 import QtGui, QtWidgets, uic
        ImportError: DLL load failed: Le module spécifié est introuvable.
        from qgis.core import QgsVectorLayer
        ImportError: DLL load failed: Le module spécifié est introuvable.


        My configuration :
        QGIS version 3.4.6-Madeira
        PyCharm Community 2018.3



        My .bat to run PyCharm :



        @echo off

        SET OSGEO4W_ROOT=C:Program FilesQGIS 3.4
        SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.2.6binpycharm.exe"

        CALL %OSGEO4W_ROOT%bino4w_env.bat
        CALL %OSGEO4W_ROOT%appsgrassgrass-7.0.5etcenv.bat

        path %PATH%;%OSGEO4W_ROOT%appsqgisbin
        path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.0.5lib

        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsbin
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgispython
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Scripts
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Lib
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Libsite-packages
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37DLLs
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
        SET QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

        start "PyCharm aware of QGIS" /B %PYCHARM% %*


        Any idea ?






        share|improve this answer













        I have the same issue :



        from PyQt5 import QtGui, QtWidgets, uic
        ImportError: DLL load failed: Le module spécifié est introuvable.
        from qgis.core import QgsVectorLayer
        ImportError: DLL load failed: Le module spécifié est introuvable.


        My configuration :
        QGIS version 3.4.6-Madeira
        PyCharm Community 2018.3



        My .bat to run PyCharm :



        @echo off

        SET OSGEO4W_ROOT=C:Program FilesQGIS 3.4
        SET PYCHARM="C:Program FilesJetBrainsPyCharm Community Edition 2018.2.6binpycharm.exe"

        CALL %OSGEO4W_ROOT%bino4w_env.bat
        CALL %OSGEO4W_ROOT%appsgrassgrass-7.0.5etcenv.bat

        path %PATH%;%OSGEO4W_ROOT%appsqgisbin
        path %PATH%;%OSGEO4W_ROOT%appsgrassgrass-7.0.5lib

        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsbin
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgispython
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Scripts
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Lib
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37Libsite-packages
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsPython37DLLs
        SET PYTHONPATH=%PYTHONPATH%;%OSGEO4W_ROOT%appsqgis-ltrpython
        SET QGIS_PREFIX_PATH=%OSGEO4W_ROOT%appsqgis

        start "PyCharm aware of QGIS" /B %PYCHARM% %*


        Any idea ?







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered yesterday









        QuentinRQuentinR

        242




        242



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317332%2fpycharm-2019-is-not-working-with-qgis-anymore%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

            Crop image to path created in TikZ? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Crop an inserted image?TikZ pictures does not appear in posterImage behind and beyond crop marks?Tikz picture as large as possible on A4 PageTransparency vs image compression dilemmaHow to crop background from image automatically?Image does not cropTikzexternal capturing crop marks when externalizing pgfplots?How to include image path that contains a dollar signCrop image with left size given

            Romeo and Juliet ContentsCharactersSynopsisSourcesDate and textThemes and motifsCriticism and interpretationLegacyScene by sceneSee alsoNotes and referencesSourcesExternal linksNavigation menu"Consumer Price Index (estimate) 1800–"10.2307/28710160037-3222287101610.1093/res/II.5.31910.2307/45967845967810.2307/2869925286992510.1525/jams.1982.35.3.03a00050"Dada Masilo: South African dancer who breaks the rules"10.1093/res/os-XV.57.1610.2307/28680942868094"Sweet Sorrow: Mann-Korman's Romeo and Juliet Closes Sept. 5 at MN's Ordway"the original10.2307/45957745957710.1017/CCOL0521570476.009"Ram Leela box office collections hit massive Rs 100 crore, pulverises prediction"Archived"Broadway Revival of Romeo and Juliet, Starring Orlando Bloom and Condola Rashad, Will Close Dec. 8"Archived10.1075/jhp.7.1.04hon"Wherefore art thou, Romeo? To make us laugh at Navy Pier"the original10.1093/gmo/9781561592630.article.O006772"Ram-leela Review Roundup: Critics Hail Film as Best Adaptation of Romeo and Juliet"Archived10.2307/31946310047-77293194631"Romeo and Juliet get Twitter treatment""Juliet's Nurse by Lois Leveen""Romeo and Juliet: Orlando Bloom's Broadway Debut Released in Theaters for Valentine's Day"Archived"Romeo and Juliet Has No Balcony"10.1093/gmo/9781561592630.article.O00778110.2307/2867423286742310.1076/enst.82.2.115.959510.1080/00138380601042675"A plague o' both your houses: error in GCSE exam paper forces apology""Juliet of the Five O'Clock Shadow, and Other Wonders"10.2307/33912430027-4321339124310.2307/28487440038-7134284874410.2307/29123140149-661129123144728341M"Weekender Guide: Shakespeare on The Drive""balcony"UK public library membership"romeo"UK public library membership10.1017/CCOL9780521844291"Post-Zionist Critique on Israel and the Palestinians Part III: Popular Culture"10.2307/25379071533-86140377-919X2537907"Capulets and Montagues: UK exam board admit mixing names up in Romeo and Juliet paper"Istoria Novellamente Ritrovata di Due Nobili Amanti2027/mdp.390150822329610820-750X"GCSE exam error: Board accidentally rewrites Shakespeare"10.2307/29176390149-66112917639"Exam board apologises after error in English GCSE paper which confused characters in Shakespeare's Romeo and Juliet""From Mariotto and Ganozza to Romeo and Guilietta: Metamorphoses of a Renaissance Tale"10.2307/37323537323510.2307/2867455286745510.2307/28678912867891"10 Questions for Taylor Swift"10.2307/28680922868092"Haymarket Theatre""The Zeffirelli Way: Revealing Talk by Florentine Director""Michael Smuin: 1938-2007 / Prolific dance director had showy career"The Life and Art of Edwin BoothRomeo and JulietRomeo and JulietRomeo and JulietRomeo and JulietEasy Read Romeo and JulietRomeo and Julieteeecb12003684p(data)4099369-3n8211610759dbe00d-a9e2-41a3-b2c1-977dd692899302814385X313670221313670221