Hello I've started working with PyCharm on Ubuntu 14.04 and I have a problem with using PyCharm debugger I'm using TurboGears 2.3.4
My configuration for running the app in py charm goes like this: script: /home/userName/.virtualenvs/EnvName/bin/gearbox script_parameters: serve --reload -c development.ini working directory: /home/userName/Projects/myApplication check on "add content roots to PYTHONPATH" check on "add source roots to PYTHONPATH" When i "run" my app with PyCharm it's wokring as excpected But, when i "debug" my app with PyCharm Its not working and i get this error: No such file or directory: "/home/userName/Projects/myApplication/import sys; sys.path.append(r'/home/userName/Pycharm4/helpers/pydev'); import pydevd; pydevd.settrace(host='127.0.0.1', port=47874, suspend=False, trace_only_current_thread=False, patch_multiprocessing=True); import sys; sys.path.append(r'/home/userName/Pycharm4/helpers/pydev'); import pydevd; pydevd.settrace(host='127.0.0.1', port=44069, suspend=False, trace_only_current_thread=False, patch_multiprocessing=True); development.ini" How can I fix it, so I will be able to debug my app? Thanks -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/turbogears. For more options, visit https://groups.google.com/d/optout.

