-
Notifications
You must be signed in to change notification settings - Fork 1k
/
run_cmd.bat
50 lines (32 loc) · 938 Bytes
/
run_cmd.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@echo off
chcp 65001
set no_proxy="127.0.0.1, 0.0.0.0, localhost"
setlocal enabledelayedexpansion
cd /D "%~dp0"
set PATH="%PATH%";%SystemRoot%\system32
echo "%CD%"| findstr /R /C:"[!#\$%&()\*+,;<=>?@\[\]\^`{|}~\u4E00-\u9FFF ] " >nul && (
echo.
echo There are special characters in the current path, please make the path of fish-speech free of special characters before running. && (
goto end
)
)
set TMP=%CD%\fishenv
set TEMP=%CD%\fishenv
(call conda deactivate && call conda deactivate && call conda deactivate) 2>nul
set CONDA_ROOT_PREFIX=%cd%\fishenv\conda
set INSTALL_ENV_DIR=%cd%\fishenv\env
set PYTHONNOUSERSITE=1
set PYTHONPATH=%~dp0
set PYTHONHOME=
call "%CONDA_ROOT_PREFIX%\condabin\conda.bat" activate "%INSTALL_ENV_DIR%"
if errorlevel 1 (
echo.
echo Environment activation failed.
goto end
) else (
echo.
echo Environment activation succeeded.
)
cmd /k "%*"
:end
pause