Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Python 3 虚拟环境运行我的 Python 应用程序,但没有安装 Python 3,我的脚本无法运行。难道我做错了什么?
venv不创建可再分发的独立应用程序,它创建虚拟环境。
venv
如果你想要一个独立的应用程序,你需要使用一些工具来构建它——<code>py2exe, PyInstaller, py2app,cx_Freeze等。这些工具有各种各样的逻辑来做一些事情,比如捆绑足够多的 Python 本身,它的 stdlib,你的第三方模块、上述任何依赖的 C 库等,并以仅适用于给定平台的任何机器的方式组织所有内容。
PyInstaller
py2app
cx_Freeze