Python_Package包安装 发表于 2025-06-16 更新于 2025-06-17 本文字数: 679 阅读时长 ≈ 1 分钟 [TOC] PIP 安装与卸载12345678pip install xxxpip install xxx==version_numberpip install captchapip install captcha==0.4# XXX/anaconda3/envs/py373/lib/python3.7/site-packagespip uninstall captcha Source 安装与卸载12345python setup.py buildpython setup.py install --record files.txt ## 记录安装后文件的路径# XXX/anaconda3/envs/py373/lib/python3.7/site-packages/captcha-0.4-py3.7.egg/pip uninstall captcha Whell 安装与卸载123456789# 下载whlwget 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/captchapip uninstall captcha