从 zip 文件获取模块?

发布于 2024-09-16 18:42:08 字数 100 浏览 5 评论 0原文

我想下载一个模块,但它仅以 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清泪尽 2024-09-23 18:42:08

只需在 sys.path 中插入 zip 文件的完整路径 c:/what/ever/itis.zip,然后导入模块 (假设它位于 zip 文件的模拟目录树结构的顶层“级别”)。

Just insert the whole path to the zipfile, c:/what/ever/itis.zip, in your sys.path, and import themodule (assuming it's at the top "level" of the zipfile's simulated directory-tree structure).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文