Visual Studio Code – cant import code modules with vscode venv feature
VsCode provided venv creation feature. I tried it. Suppose, I have that project structure: PJFOLDER ├── .venv/* ├── src/ │ └── inner_main.py ├── utils/ │ └── my_utils.py └── outer_main.py In both inner_main.py and outer_main.py I have imports of my_utils.py like…