位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python应用操作——项目中增加搜索路径

提问人:ylm发布时间:2020-09-29

有时候我们在pycharm中可以正常运行,但在linux或其他机器就有路径无法导入的问题,这时应该手动添加搜索路径,放在文件最前面

import osimport sys

curPath = os.path.abspath(os.path.dirname(__file__))rootPath = os.path.split(curPath)[0]sys.path.append(os.path.split(rootPath)[0])

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部