我的项目文件结构:
MyProject/
|- src/
packageA/
|- __init__.py
|- moduleA.py
|- Playground/
|- foo.py
|- bar/
|- baz.py
在 Playground/foo.py
以及 Playground/bar/baz.py
,我编写了一些python代码,这些代码可以作为jupyternotebook单元来处理 #%%
:
# Playground/foo.py & Playground/bar/baz.py
# %% I can run this cell with IPython in VSCode by shift+enter
import sys
print(sys.path)
import packageA
在运行单元格之后 shift + enter
,它们显示:
['{path_to_vscode_workspace}/Playground', ...]
ModuleNotFoundError: No module named 'packageA'
路径不包含 {path_to_vscode_workspace}
但是工作目录 foo.py
( {path_to_vscode_workspace}/Playground
).
如何在中设置python包搜索路径 settings.json
使用vscode特定参数?
暂无答案!
目前还没有任何答案,快来回答吧!