问题:
今天学习python的时候,运行时报错:ModuleNotFoundError: No module named ‘pygame’。意思就是没有 pygame 这个模块
解决办法:
下载一下这个模块就行了
pip3 install pygame或者pip install pygame
如果使用PyCharm作为开发工具,可以直接在代码中书写import requests
,然后通过代码修复功能来自动下载安装requests。
在下载模块之前,我们需要安装配置pip
目前如果你在 python.org 下载最新版本的安装包,则是已经自带了该工具。
Python 2.7.9 + 或 Python 3.4+ 以上版本都自带 pip 工具。
如果不确定有没有,直接查看文件夹Scripts就行了。我这是python3.6.4已经内置了pip,所以不需要去下载
但是无法正常执行:
原因:因为还没有配置环境,我们需要把Scripts的文件路径配置到环境变量里
重新打开命令窗口,输入pip,回车,显示常用命令就表示安装成功了
pip -V或者pip --version //查看pip版本
什么是pip?:
pip 是一个现代的,通用的 Python 包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能。
官方提供的pip 示例
$ pip install requests
$ pip search xml
$ pip show beautifulsoup4
$ pip uninstall requests
在windows系统中通过cmd直接执行命令,
常见的命令如下
Usage:
pip<command> [options]
Commands:
install 【 安装包安装 (Install packages.)】
download 【 下载下载包 (Download packages.)】
uninstall 【 卸载卸载包 (Uninstall packages.)】
freeze 【 冻结按需求格式安装的包的输出 (Output installed packages in requirements format.)】
list 【 列表列出已安装的包 ( List installed packages.)】
show 【 显示已安装软件包的信息 ( Show information about installed packages.)】
check 【 检查已安装的软件包是否具有兼容的依赖项 ( Verify installed packages have compatible dependencies.)】
config 【 配置管理本地和全局配置 ( Manage local and global configuration.)】
search 【 搜索PyPI查找包 (Search PyPI for packages.)】
wheel 【 根据您的需求构建轮子 (Build wheels from your requirements.)】
hash 【 包存档的哈希计算哈希 ( Compute hashes of package archives.)】
completion 【 用于命令完成的辅助命令 ( A helper command used for command completion.)】
debug 【 显示对调试有用的信息 ( Show information useful for debugging.)】
help 【 帮助显示命令的帮助 (Show help for commands.)】