2
I’m using version 16.7.5 of Visual Studio Community 2019 where I’m implementing for the first time a pyproj
(Python version 3.8.3) in a virtual environment env
.
I installed the library elasticsearch-dsl
in the virtual environment and ran the web application successfully, but while trying to apply a "breakpoint" on any line in the file C:\Users\User\source\repos\MeuProjeto\MeuProjeto\env\Lib\site-packages\elasticsearch_dsl\utils.py
I find the following alert:
The breakpoint will not currently be hit. Breakpoint in file excluded by filters.
Note: may be excluded because of "justMyCode" option (default == true).Try setting "justMyCode": false in the debug configuration (e.g., launch.json).
Location: utils.py, line 68...
I searched some solutions for this and found in "Debug > Options > Debugging > General" the box "Enable Just My Code" qualified; however, even when unchecking it, there has been no change.
Is there anything else that can be done for me to try to solve this problem?
I need to use the Visual Studio Community, I believe in it I have no access to
launch.json
, but I could be wrong.– Rfroes87
Gee, I’m sorry I already found the link and how to create the correct file. I’ll edit the answer
– Codigo de Senior