从 zip 文件获取模块?
我想下载一个模块,但它仅以 zip 文件形式提供,如何让这样的文件在 python 中正常工作,以便我可以导入我想要的内容?
顺便说一句,这是在 Windows 7 中。
There is a module I'd love to download, but it is only available in a zip file, how do I get such a file to work properly in python, so That I can import what I want?
This is in Windows 7 BTW.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在
sys.path
中插入 zip 文件的完整路径c:/what/ever/itis.zip
,然后导入模块
(假设它位于 zip 文件的模拟目录树结构的顶层“级别”)。Just insert the whole path to the zipfile,
c:/what/ever/itis.zip
, in yoursys.path
, andimport themodule
(assuming it's at the top "level" of the zipfile's simulated directory-tree structure).