怎么查看python模块在什么位置

图片[1]-怎么查看python模块在什么位置-uusu优素-乐高,模型,3d打印,编程

查看python模块在什么位置的方法:

若要获取模块的文件名为filename.py,在cmd中输入下面的代码即可获取指定模块的路径:

importos
os.path.abspath('.\\filename.py')#获得你要导入的模块的路径
'C:\\Users\\14469\\Desktop\\untitled\\filename.py'

复制刚才的路径,然后加到sys.path即可导入模块:

importsys
sys.path.append('C:\\Users\\14469\\Desktop\\untitled\\filename.py')
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞15 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容