Qgis ile pycharm kullanmaya başladım, ancak ikisini birden bağlayamadım. Pycharm her zaman "bağlantı bekleniyor" durumunda kalır. Mevcut öğreticiler çoğu windows işaret ama ubuntu kullanıyorum yani pycharm qgis kodu hata ayıklamak için bir yol bulamadı. İşte benim pycharm kodum:
from shapely.geometry import *
from shapely.wkt import loads
import sys
import pydevd
pydevd.settrace('localhost', port=53100, stdoutToServer=True, stderrToServer=True)
class Loader:
def __init__(self, iface):
"""Initialize using the qgis.utils.iface
object passed from the console.
"""
self.iface = iface
Ben pycharm kesme noktaları etkinleştirdi ve pythonpath pycharm-debug.egg ekledi nasıl herkes nasıl ubuntu üzerinde qgis yapılandırmak?
pycharm her zaman içindedir:
Starting debug server at port 53100
Use the following code to connect to the debugger:
import pydevd
pydevd.settrace('localhost', port=53100, stdoutToServer=True, stderrToServer=True)
Waiting for process connection...
Bu komut dosyasını qgis'den çalıştırdığımda hiçbir şey olmaz, kesme noktası çağrılmaz.