如何安装 python 个模块?

How to install python modules?

我是 python 编程语言的新手,我想用 pip 安装 .whl 文件,但没有成功...我正在尝试下载 64 位的 pyHook windows 7 python 3.6 或 2.7.

请帮帮我!

方法一

正如已经回答的那样 ,您只需使用 pip 命令来安装 whl 文件, pip install some-package.whl 假设 .whl 文件与您 运行 命令所在的目录相同,如果不提供完整路径,例如 pip install C:\somedir\mypackage.whl

方法二

或者您可以使用 7-zip 解压缩 .whl 文件。然后在解压缩的目录中,您将找到可以复制并粘贴到目录 C:/Python34/Lib/site-packages/(或您安装的其他任何地方 Python)的模块。正如已经回答的那样

This method only works if there is not extension module to be compiled, therefore in this case it won't work as pointed out by @roland-smith