Tuchuanhuhuhu commited on
Commit
962de4f
·
1 Parent(s): 1abaf77

feat: 自动安装时升级pip版本

Browse files
Files changed (1) hide show
  1. run_Windows.bat +3 -2
run_Windows.bat CHANGED
@@ -4,11 +4,12 @@ echo Opening ChuanhuChatGPT...
4
  if not exist "%~dp0\ChuanhuChat\Scripts" (
5
  echo Creating venv...
6
  python -m venv ChuanhuChat
7
-
8
  cd /d "%~dp0\ChuanhuChat\Scripts"
9
  call activate.bat
10
-
11
  cd /d "%~dp0"
 
12
  pip install -r requirements.txt
13
  )
14
 
 
4
  if not exist "%~dp0\ChuanhuChat\Scripts" (
5
  echo Creating venv...
6
  python -m venv ChuanhuChat
7
+
8
  cd /d "%~dp0\ChuanhuChat\Scripts"
9
  call activate.bat
10
+
11
  cd /d "%~dp0"
12
+ python -m pip install --upgrade pip
13
  pip install -r requirements.txt
14
  )
15