mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-19 13:23:16 +08:00
8 lines
240 B
Bash
8 lines
240 B
Bash
#!/bin/bash
|
|
|
|
python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|
|
while read requirement; do
|
|
python -m pip install --upgrade "$requirement" -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
done < requirements.txt
|