First time here? Check out the FAQ!

rea725's profile - activity

2024-03-18 10:40:18 -0500 commented answer How to I fix WingIDE Pro not recognizing locally installed packages?

Updating my Python Path in Wing's Project Properties fixed it. Thank you!

2024-03-18 10:40:01 -0500 marked best answer How to I fix WingIDE Pro not recognizing locally installed packages?

Hi. I run WingIDE Pro in Linux and also in Windows. The environments are configured similarly, both to help me edit the same code base. In both cases, I have set up remote debugging using wingdbstub.py to enable debugging of code that I'm serving locally. It's working splendidly in on both operating systems. My Python environment is a pyenv environment.

The issue I am facing is that the WingIDE editor in my Linux dev machine is not recognizing packages that I've installed locally via PIP from my local code base. The code in these packages runs fine via the Wing debugger, but the editor itself for some reason does not recognize the packages. It underlines them, and a mouse-over reveals context "X: Import not found: my_package". Also, I can not Ctrl-Click to open up the packages that the WingIDE editor does not recognize.

In spite of the "Import not found" warnings, the code runs fine when I run it in debug mode, including the portions that make use of the imported packages that the WingIDE editor does not recognize. The packages are in fact installed and working in my environment.

The offending packages are packages that are within my code base, and installed via pip install -e .. Also the wingdbstub.pywing debug helper file also gets the same treatment from the WingIDE editor. The editor underlines it with an "Import not found" warning, but it in fact runs just fine.

I think I have mis-configured my WingIDE project, but I am not having any luck spotting what I've done wrong. The WingIDE editor in my other (Windows) environment is working just fine. It is configured very similarly, and operating on the same underlying code base.

Any helpful hints are appreciated :)

Thanks

2024-03-18 10:40:01 -0500 received badge Scholar ( source )
2024-03-18 10:39:51 -0500 answered a question How to I fix WingIDE Pro not recognizing locally installed packages?

Updating my Python Path in Wing's Project Properties fixed it. Thank you!

2024-03-18 10:39:10 -0500 received badge Supporter ( source )
2024-03-14 12:04:39 -0500 received badge Student (source)
2024-03-14 12:04:33 -0500 asked a question How to I fix WingIDE Pro not recognizing locally installed packages?

How to I fix WingIDE Pro not recognizing locally installed packages? Hi. I run WingIDE Pro in Linux and also in Windows.