Pip命令
升级pip到最新的版本
python -m pip install --upgrade pip
或
python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip
镜像地址
清华镜像源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
豆瓣镜像源
pip install -i http://pypi.douban.com/simple/ --trusted-host=pypi.douban.com some-package
阿里云镜像源
pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com some-package
中国科学技术大学镜像源
pip install -i http://pypi.mirrors.ustc.edu.cn/simple/ --trusted-host=pypi.mirrors.ustc.edu.cn some-package
导出wheel包
导出全部
pip wheel --wheel-dir=./wheelhouse -r requirements.txt -i http://mirrors.ustc.edu.cn/pypi/simple/ --trusted-host mirrors.ustc.edu.cn
导出指定的
pip wheel --wheel-dir=./wheelhouse fastapi==2.2.3 -i http://mirrors.ustc.edu.cn/pypi/simple/ --trusted-host mirrors.ustc.edu.cn --extra-index-url https://test.com/pypi/simple/
安装wheel包
安装全部
pip install wheelhouse/*.whl
安装指定的
pip install --no-index --find-links=wheelhouse fastapi==2.2.3
Debian安装python-ldap的依赖库
apt-get install gcc libldap2-dev libsasl2-dev