Python | Package | Python的三种包安装方式(pip/whl/tar.gz)

文章目录

    • PIP 安装与卸载
    • Source 安装与卸载
    • Whell 安装与卸载

PIP 安装与卸载

pip install xxx
pip install xxx==version_number

pip install captcha
pip install captcha==0.4

# XXX/anaconda3/envs/py373/lib/python3.7/site-packages
pip uninstall captcha

在这里插入图片描述

Source 安装与卸载

python setup.py build
python setup.py install --record files.txt ## 记录安装后文件的路径

# XXX/anaconda3/envs/py373/lib/python3.7/site-packages/captcha-0.4-py3.7.egg/
pip uninstall captcha

Python | Package | Python的三种包安装方式(pip/whl/tar.gz)_第1张图片

Whell 安装与卸载

# 下载whl
wget https://files.pythonhosted.org/packages/11/b0/a5125b88c185586afc64ea6af894eab996de4ef28c395dcdf4a7818a9098/captcha-0.4-py3-none-any.whl
# 安装
pip install captcha-0.4-py3-none-any.whl


# 卸载
# XXX/anaconda3/envs/py373/lib/python3.7/site-packages/captcha
pip uninstall captcha

Python | Package | Python的三种包安装方式(pip/whl/tar.gz)_第2张图片



如果对你有所帮助,可以点赞、关注、收藏起来,不然下次就找不到了


【点赞】⭐️⭐️⭐️⭐️⭐️
【关注】⭐️⭐️⭐️⭐️⭐️
【收藏】⭐️⭐️⭐️⭐️⭐️

Thanks for watching.
Kenny

你可能感兴趣的:(Python,-,基础,python,pip,wheel,whl,tar.gz,setup.py,install)