Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经编写了自己的 python 代码,组织在 dirs 和 sub dirs 层次结构中
我正在尝试在一些项目中使用此代码(包/模块,我不确定术语)。
问题是项目之间的代码路径不同。
如何在每个项目中导入整个目录、子目录和子文件层次结构?
提前致谢!
在导入语句之前用你的代码试试这个
from sys import path path += [<path>] # Here You specify the path of the library package