概述
安装 pip
首先安装 pip 和你使用Python的版本有关。
但是不论是 pip、pip3 安装命令都是:
# easy_install 一般是默认自带的
sudo easy_install pip;
我的python是python3。
安装之后,检查。
pip3 --version
# jisongyang@SongyangJi-MacBookAir ~ % pip3 --version
# pip 21.0.1 from /Library/Python/3.8/site-packages/pip (python 3.8)
使用 pip
在Mac 的终端下使用pip3 --help
来查看帮助。
Usage:
pip3 <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 Search PyPI for packages.
cache Inspect and manage pip's wheel cache.
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.
最常用的就是安装、卸载,以及查看已安装的包了。
# 安装
sudo pip3 install args
# 卸载
sudo pip3 uninstall args
# 查看已经安装的包
sudo pip3 list
注意上面的命令最好在root权限下运行,否则可能出现一些问题。
最后
以上就是雪白日记本为你收集整理的MacOS 安装 pip3的注意点、使用 pip安装 pip使用 pip的全部内容,希望文章能够帮你解决MacOS 安装 pip3的注意点、使用 pip安装 pip使用 pip所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复