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.
我正在使用无法连接到互联网的 CentOS 机器,由于某些原因,我需要安装一个 python 模块 psutil,所以我得到了 psutil-2.1.3 包,但没有明确的说明如何在 centOS 系统中手动安装它
这通常很简单:
到了PyPi
下载.whl适用于您的 Python 版本的文件并将其复制到您的服务器
.whl
运行pip install path/to/wheel.whl,根据您的设置,您可能需要使用 sudo 或从虚拟环境安装它
pip install path/to/wheel.whl
???
利润!