使用pip下载超时的应对

增加超时时间,并使用清华源

1
2
3
4
5
6
7
8
# 临时使用清华源,同时增加超时时间(Linux/Mac)
UV_HTTP_TIMEOUT=300 uv pip install langchain langchain-community chromadb sentence-transformers python-dotenv requests -i https://pypi.tuna.tsinghua.edu.cn/simple

# Windows PowerShell
$env:UV_HTTP_TIMEOUT=300; uv pip install langchain langchain-community chromadb sentence-transformers python-dotenv requests -i https://pypi.tuna.tsinghua.edu.cn/simple

# Windows CMD
set UV_HTTP_TIMEOUT=300 && uv pip install langchain langchain-community chromadb sentence-transformers python-dotenv requests -i https://pypi.tuna.tsinghua.edu.cn/simple