位置:首頁 > 軟件操作教程 > 編程開發(fā) > Python > 問題詳情

python應(yīng)用操作——項(xiàng)目中增加搜索路徑

提問人:ylm發(fā)布時(shí)間:2020-09-29

有時(shí)候我們?cè)?/span>pycharm中可以正常運(yùn)行,但在linux或其他機(jī)器就有路徑無法導(dǎo)入的問題,這時(shí)應(yīng)該手動(dòng)添加搜索路徑,放在文件最前面

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])

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部