2,572 questions
0
votes
0
answers
99
views
Integrating a complicated package layout into PyDev
I'm working on a project that has a somewhat complicated package layout. Specifically, there's a setup.py file at the top level of the project's directory tree that's as follows:
from setuptools ...
Advice
0
votes
1
replies
14
views
Unable to install Pydev plugin in Eclipse 2025-9
using http://pydev.org/updates in Eclipse to install pydev I get an error message There no categorized items. I installed pydev last December with no issues. Not sure what to do. I could try pycharm ...
2
votes
1
answer
124
views
pydev path mapping with virtual env
see also
pydev debug server shows error that doesn't apply
pydev debugger: unable to find translation for: (please revise your path mappings)
https://stackoverflow.com/a/41765551/1497139
When ...
1
vote
0
answers
76
views
Disable attribute evaluation in debugpy / pydevd in Visual Studio Code
I have an object which has multiple properties that when accesses query a SQL database. When I debug a region where such an object is present, e.g. in VSC with debugpy, all these attributes are ...
0
votes
1
answer
50
views
How do I remove a folder from PyDev Package Explorer without removing the contained files
In PyDev Package Explorer, I've got a package and folder which both point to the same folder structure on my computer, I want to get rid of the folder reference (which I have disconnected from github),...
1
vote
1
answer
108
views
eclipse - pydev - pyenv: mixing up python versions in debug mode
I used to work with Python 3.8.10. Now I additionally installed Python 3.13.2 via pyenv. Both versions are working when I call them in a terminal.
In Eclipse I generated a pydev project. In it there ...
1
vote
1
answer
64
views
Pydev not showing up in Eclipse
I'm running eclipse 2025-3 on Ubuntu 24.04 installed through the snap store. I have installed pydev using the marketplace (as well as CDT) and noticed that the perspective, menu, and even the ...
0
votes
1
answer
1k
views
Pycharm debug not working: Trying to Debug a simple python program in PyCharm. But getting errors
I'm trying to debug simple python program in PyCharm, but getting below error.
"C:\Program Files\Python313\python.exe" "C:/Program Files/JetBrains/PyCharm Community Edition 2022.3/...
0
votes
1
answer
54
views
Can I configure Eclipse/Pydev to automatically create a git repository when creating a new Pydev project?
The title is pretty accurate and complete. What I would like to know is if there's an option to configure eclipse/pydev to create a git repository automatically when I create a new pydev project.
I ...
0
votes
1
answer
77
views
Import incorrectly identified by PyDev in VSCode as unresolved
To import the colorama module, I'm using import colorama.
When doing so into any .py file within my project (tested within multiple directories as well, including root), vscode underlines the '...
1
vote
1
answer
42
views
Pydev - breakpoints not displaying in left margin after recent updates
Eclipse/Pydev has been working fine for years. In the last few days, however, I updated to the latest eclipse (4.34 - 2024-12) and at the same time the latest PyDev (12.2.0). The problem I'm having ...
0
votes
0
answers
28
views
Can two instances of Eclipse/PyDev work off of the same Python source code?
I need to run two instances of Eclipse/PyDev on the same machine that operate on the same source code. The situation is this. Two Python applications use the same common underlying modules in Python ...
0
votes
0
answers
40
views
Passing $PATH from script execution to python
I am attempting to setup $PATH using a shell script and pass it to a python script. I have ShellWax in Eclipse and nodejs on my machine. I also have the plugin PyDev installed. I also have the debug ...
0
votes
1
answer
70
views
Does PyDev support python async?
The application I am attempting to run under Eclipse/PyDev uses the python async keyword and the asyncio package. Does PyDev support asyncio? I imagine this would affect how stack histories are ...
0
votes
1
answer
137
views
Sending OS.kill(pid, signal.SIGUSR1) to process running in Eclipse
I am trying to use the tactic described in showing-stack-trace-of-running-python-application on a python application running within Eclipse/PyDev. I installed the module described therein (in the file ...