2,571 questions
0
votes
1
answer
43
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),...
0
votes
1
answer
84
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 ...
0
votes
1
answer
53
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
761
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
0
answers
29
views
Retrieve class inheritance, constructor and field of an PyDev IResource
I am looking for a way to retrieve in Eclipse with the help of PyDev the inheritance of Class, the constructor and the presence of a field of an IResource representing a .py file in Eclipse.
I already ...
0
votes
1
answer
50
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
0
answers
30
views
Cannot set Pipenv location in eclipse
I am trying to create a Pipenv environment in eclipse. When I need to set the location of Pipenv executable, I cannot browse to that folder; it is missing. When I type in the full path:
I installed ...
0
votes
1
answer
71
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 '...
0
votes
1
answer
25
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
25
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
37
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
63
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
121
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 ...
0
votes
0
answers
42
views
PyDev debugger running under Eclipse shows message "suicide_when_without_parent"
I am trying to figure out what happens when the PyDev debugger (running under Eclipse) encounters OS.fork(). This was the subject of another post that has not received any response (Eclipse/PyDev ...
0
votes
1
answer
211
views
Setting PYTHONPATH in Eclipse/PyDev
Added later: I stupidly capitalized OS rather than using os, so the import and print now works properly. However, the question remains: how can I add a source directory that is outside the project ...