PyDev remote debugging not working (connection refused)
I'm using Eclipse Luna Service Release 1 (4.4.1) with PyDev 3.9.0.201411111611 for Python 2.7 development, on an ArchLinux (Manjaro) machine. I have an external script to run my application from command line, using the import pydevd; pydevd.settrace() template as described in the docs for remote debugging. The full script is as follows: #!/usr/bin/python2 import sys sys.path.append('/home/manu343726/Documentos/myapp/') sys.path.append('/home/manu343726/.eclipse/org.eclipse.platform_4.4.1_1543616141_linux_gtk_x86_64/plugins/org.python.pydev_3.9.0.201411111611/pysrc/') from mymodule import main