I'm trying to get debugging up between PyCharm (on windows host) and a debian virtual host running my django application. The instructions say to install the egg, add the import, and then invoke a command. I assume these things need to be done on the debian host?
Ok, then, in what file should I put these two lines?
from pydev import pydevd
pydevd.settrace('not.local', port=21000, stdoutToServer=True, stderrToServer=True)
I tried putting it into the settings.py but got this kind of thing...
File "/django/conf/__init__.py", line 87, in __init__
mod = importlib.import_module(self.SETTINGS_MODULE)
File "/django/utils/importlib.py", line 35, in import_module
__import__(name)
File "/settings.py", line 10, in <module>
pydevd.settrace('dan.local', port=21000, stdoutToServer=True, stderrToServer=True)
File "/pycharm-debug.egg/pydev/pydevd.py", line 1079, in settrace
debugger.connect(host, port)
File "/pycharm-debug.egg/pydev/pydevd.py", line 241, in connect
s = StartClient(host, port)
File "/pycharm-debug.egg/pydev/pydevd_comm.py", line 362, in StartClient
sys.exit(1)
SystemExit: 1
Whilst pycharm just sat there "waiting for connection"
It seems that for some reason debugger couldn't connect to your windows host with PyCharm. Haven't you got any other messages in stderr? If you have not, try to run it one more time, but with sterrToServer=false. That may show real reason why it doesn't connect.
It is just a note , actually , but contains some info that may save hours.
pip install pydevd
worked for me on both ubuntu and centos 6ssh -R 8081:localhost:8081 user@remote-server.com
this allows remote code to connect to your machine listening on localhost:8081
PyCharm (or your ide of choice) acts as the "server" and your application is the "client"; so you start the server first - tell the IDE to 'debug' - then run the client - which is some code with the
settrace
statement in it. When your python code hits thesettrace
it connects to the server - pycharm - and starts feeding it the debug data.To make this happen:
1. copy the
pydev
library to the remote machineSo I had to copy the file from
C:\Program Files\JetBrains\PyCharm 1.5.3\pycharm-debug.egg
to my linux machine. I put it at/home/john/api-dependancies/pycharm-debug.egg
2. Put the egg in the PYTHONPATH
Hopefully you appreciate that you're not going to be able to use the egg unless python can find it. I guess most people use easy_install but in my instance I added it explicitly by putting this:
This is only necessary because I've still had no success installing an egg. This is my workaround.
3. setup the debug server config
In PyCharm you can configure the debug server via:
"OK"
Local host name: means the name of the server - that's the windows host machine in my case - or actually the IP Address of the windows host machine since the hostname is not known to my remote machine. So the virtual (remote) machine has to be able to reach the host.
ping
andnetstat
are good for this.Port: can be any vacant non-priviledged port you like. eg:
21000
is unlikely to be in use.Don't worry about the path mappings for now.
4. Start the debug server
The debug console tab will appear and you should get
in the console which means that the ide debug server is waiting for your code to open a connection to it.
5. Insert the code
This works inside a unit test:
And in a django web application it's a bit finicky about where you put it - seems to work only after everything else is done:
Again that the IP address is the box where you're running Pycharm on; you should be able to ping that ip address from the box running your code/website. The port is your choice, just make sure you've told pycharm to listen on the same port. And I found the
suspend=False
less problematic than the defaults of, not only immediately halting so you're not sure if it's working, but also trying to stream to stdin/out which might give you grief also.6. Open the firewall
Windows 7 firewall will, by default, block your incoming connection. Using netstat on the remote host you'll be able to see that SYN_SENT never becomes ESTABLISHED, at least not until you add an exception to the windows firewall for the application 'pycharm'.
OS/X and Ubuntu do not have firewalls to punch threw (by default, someone may have applied one later).
7. Set a breakpoint and run the code
After all that, when everything goes to plan, you can set a breakpoint - somewhere after the settrace has run - and pycharm console will show
and under the 'Debugger' tab the variables stack will start working and you can step through the code.
8. Mappings
Mapping tell pycharm where it can find the source code. So when the debugger says "i'm running line 393 of file /foo/bar/nang.py, Pycharm can translate that remote absolute path into an absolute local path... and show you the source code.
Done.