Replies: 1 comment
-
I discovered that the problem is wider... I am opening another thread. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to develop a package that I have installed with
pip install -e .
.The project structure is the following:
I want to use the
manual_test.py
script for debuggingmypackage
. Among others, in such a file I haveimport mypackage as mypkg
but when I run the debugger I get amodule not found error
on that line. Other packages are correctly recognized.The debugpy configuration follows:
I read somewhere to set
PYDEVD_RESOLVE_SYMLINKS=1
but it didn't help.Beta Was this translation helpful? Give feedback.
All reactions