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 虚拟环境 ( $ python -m venv myenv) 上工作时,我在其中找不到os模块。
$ python -m venv myenv
os
我试过$ pip install os了,但也找不到那里的包裹。如何从标准库安装模块?
$ pip install os
谢谢您的帮助。
OS 模块通常包含在标准的 Python 安装中,您不能真正使用 pip 安装它。
https://docs.python.org/3.4/library/index.html
你能导入模块吗?如果没有,听起来您的 Python 安装已损坏。标准库有它的名字,因为它总是包含在一个普通的 Python 安装中。