hydrus/setup_venv.bat

295 lines
7.7 KiB
Batchfile
Raw Permalink Normal View History

2022-10-19 20:44:13 +00:00
@ECHO off
2022-11-23 21:01:41 +00:00
pushd "%~dp0"
2024-04-03 21:15:48 +00:00
IF "%1"=="" (
set python_bin=python
) else (
set python_bin=%1
)
IF "%2"=="" (
set venv_location=venv
) else (
set venv_location=%2
)
2023-09-20 19:58:17 +00:00
ECHO r::::::::::::::::::::::::::::::::::r
ECHO : :
ECHO : :PP. :
ECHO : vBBr :
ECHO : 7BB: :
ECHO : rBB: :
ECHO : :DQRE: rBB: :gMBb: :
ECHO : :BBBi rBB: 7BBB. :
ECHO : KBB: rBB: rBBI :
ECHO : qBB: rBB: rQBU :
ECHO : qBB: rBB: iBBS :
ECHO : qBB: iBB: 7BBj :
ECHO : iBBY iBB. 2BB. :
ECHO : SBQq iBQ: EBBY :
ECHO : :MQBZMBBDRBBP. :
ECHO : .YBB7 :
ECHO : :BB. :
ECHO : 7BBi :
ECHO : rBB: :
ECHO : :
ECHO r::::::::::::::::::::::::::::::::::r
ECHO:
ECHO hydrus
ECHO:
2024-04-03 21:15:48 +00:00
IF "%python_bin%"=="python" (
2023-08-30 16:25:24 +00:00
2024-04-03 21:15:48 +00:00
where /q %python_bin%
IF ERRORLEVEL 1 (
2023-08-30 16:25:24 +00:00
2024-04-03 21:15:48 +00:00
SET /P gumpf="You do not seem to have python installed. Please check the 'running from source' help."
2023-08-30 16:25:24 +00:00
2024-04-03 21:15:48 +00:00
popd
2023-08-30 16:25:24 +00:00
2024-04-03 21:15:48 +00:00
EXIT /B 1
)
)
2024-04-03 21:15:48 +00:00
IF EXIST "%venv_location%\" (
2023-08-30 16:25:24 +00:00
SET /P ready="Virtual environment will be reinstalled. Hit Enter to start."
echo Deleting old venv...
2024-04-03 21:15:48 +00:00
rmdir /s /q %venv_location%
2023-08-30 16:25:24 +00:00
) ELSE (
2023-08-30 16:25:24 +00:00
SET /P ready="If you do not know what this is, check the 'running from source' help. Hit Enter to start."
)
2024-04-03 21:15:48 +00:00
IF EXIST "%venv_location%\" (
2024-02-21 21:09:02 +00:00
SET /P gumpf="It looks like the venv directory did not delete correctly. Do you have it activated in a terminal or IDE anywhere? Please close that and try this again!"
popd
EXIT /B 1
)
:questions
2023-09-20 19:58:17 +00:00
ECHO --------
ECHO Users on older Windows or Python ^>=3.11 need the advanced install.
ECHO:
ECHO Your Python version is:
2024-04-03 21:15:48 +00:00
%python_bin% --version
ECHO:
2023-08-30 16:25:24 +00:00
SET /P install_type="Do you want the (s)imple or (a)dvanced install? "
IF "%install_type%" == "s" goto :create
IF "%install_type%" == "a" goto :question_qt
2023-01-11 21:10:29 +00:00
IF "%install_type%" == "d" goto :create
goto :parse_fail
:question_qt
2023-09-20 19:58:17 +00:00
ECHO --------
ECHO We are now going to choose which versions of some larger libraries we are going to use. If something doesn't install, or hydrus won't boot, just run this script again and it will delete everything and start over.
ECHO:
ECHO Qt - User Interface
ECHO:
2023-09-20 19:58:17 +00:00
ECHO Most people want "6".
2023-10-25 21:23:53 +00:00
ECHO If you are on Windows ^<=8.1, choose "5". If you want a specific version, choose "a".
SET /P qt="Do you want Qt(5), Qt(6), or (a)dvanced? "
IF "%qt%" == "5" goto :question_mpv
IF "%qt%" == "6" goto :question_mpv
2023-10-25 21:23:53 +00:00
IF "%qt%" == "a" goto :question_qt_advanced
goto :parse_fail
:question_qt_advanced
ECHO:
ECHO If you have multi-monitor menu position bugs with the normal Qt6, try "o" on Python ^<=3.10 or "m" on Python ^>=3.11.
SET /P qt="Do you want Qt6 (o)lder, Qt6 (m)iddle, Qt6 (t)est, or (w)rite your own? "
2023-08-09 21:12:17 +00:00
IF "%qt%" == "o" goto :question_mpv
2023-09-05 20:01:54 +00:00
IF "%qt%" == "m" goto :question_mpv
2022-12-07 22:41:53 +00:00
IF "%qt%" == "t" goto :question_mpv
2023-10-25 21:23:53 +00:00
IF "%qt%" == "w" goto :question_qt_custom
goto :parse_fail
2023-10-25 21:23:53 +00:00
:question_qt_custom
ECHO:
SET /P qt_custom_pyside6="Enter the exact PySide6 version you want, e.g. '6.6.0': "
SET /P qt_custom_qtpy="Enter the exact qtpy version you want (probably '2.4.1'): "
goto :question_mpv
:question_mpv
2023-09-20 19:58:17 +00:00
ECHO --------
ECHO mpv - audio and video playback
ECHO:
2023-09-20 19:58:17 +00:00
ECHO We need to tell hydrus how to talk to your mpv dll.
ECHO Most people want "n".
ECHO If it doesn't work, fall back to "o".
2023-09-05 20:01:54 +00:00
SET /P mpv="Do you want (o)ld mpv, (n)ew mpv, or (t)est mpv? "
2023-09-20 19:58:17 +00:00
IF "%mpv%" == "o" goto :question_pillow
IF "%mpv%" == "n" goto :question_pillow
IF "%mpv%" == "t" goto :question_pillow
goto :parse_fail
:question_pillow
ECHO --------
ECHO Pillow - Images
ECHO:
ECHO Most people want "n".
ECHO If you are Python 3.7 or earlier, choose "o".
SET /P pillow="Do you want (o)ld pillow or (n)ew pillow? "
IF "%pillow%" == "o" goto :question_opencv
IF "%pillow%" == "n" goto :question_opencv
goto :parse_fail
:question_opencv
2023-09-20 19:58:17 +00:00
ECHO --------
ECHO OpenCV - Images
ECHO:
2023-09-20 19:58:17 +00:00
ECHO Most people want "n".
ECHO If it doesn't work, fall back to "o". Python ^>=3.11 might need "t".
2023-08-30 16:25:24 +00:00
SET /P opencv="Do you want (o)ld OpenCV, (n)ew OpenCV, or (t)est OpenCV? "
IF "%opencv%" == "o" goto :create
IF "%opencv%" == "n" goto :create
IF "%opencv%" == "t" goto :create
goto :parse_fail
2022-10-19 20:44:13 +00:00
:create
2023-09-20 19:58:17 +00:00
ECHO --------
2022-10-19 20:44:13 +00:00
echo Creating new venv...
2024-04-03 21:15:48 +00:00
%python_bin% -m venv %venv_location%
2022-10-19 20:44:13 +00:00
2024-04-03 21:15:48 +00:00
CALL %venv_location%\Scripts\activate.bat
2022-10-19 20:44:13 +00:00
2022-11-16 21:34:30 +00:00
IF ERRORLEVEL 1 (
2023-08-30 16:25:24 +00:00
SET /P gumpf="The venv failed to activate, stopping now!"
popd
EXIT /B 1
2022-11-16 21:34:30 +00:00
)
2022-10-19 20:44:13 +00:00
python -m pip install --upgrade pip
2022-11-16 21:34:30 +00:00
python -m pip install --upgrade wheel
2022-10-19 20:44:13 +00:00
IF "%install_type%" == "s" (
2023-08-30 16:25:24 +00:00
python -m pip install -r requirements.txt
2023-01-11 21:10:29 +00:00
)
IF "%install_type%" == "d" (
2023-08-30 16:25:24 +00:00
python -m pip install -r static\requirements\advanced\requirements_core.txt
python -m pip install -r static\requirements\advanced\requirements_windows.txt
python -m pip install -r static\requirements\advanced\requirements_qt6_test.txt
python -m pip install pyside2
python -m pip install PyQtChart PyQt5
python -m pip install PyQt6-Charts PyQt6
2023-09-20 19:58:17 +00:00
python -m pip install -r static\requirements\advanced\requirements_pillow_new.txt
2023-09-05 20:01:54 +00:00
python -m pip install -r static\requirements\advanced\requirements_mpv_test.txt
2023-08-30 16:25:24 +00:00
python -m pip install -r static\requirements\advanced\requirements_opencv_test.txt
python -m pip install -r static\requirements\hydev\requirements_windows_build.txt
2023-01-11 21:10:29 +00:00
)
IF "%install_type%" == "a" (
2023-08-30 16:25:24 +00:00
2023-10-25 21:23:53 +00:00
IF "%qt%" == "w" (
python -m pip install QtPy==%qt_custom_qtpy%
IF ERRORLEVEL 1 (
SET /P gumpf="It looks like we could not find that qtpy version!"
popd
EXIT /B 1
)
python -m pip install PySide6==%qt_custom_pyside6%
IF ERRORLEVEL 1 (
SET /P gumpf="It looks like we could not find that PySide6 version!"
popd
EXIT /B 1
)
)
2023-08-30 16:25:24 +00:00
python -m pip install -r static\requirements\advanced\requirements_core.txt
python -m pip install -r static\requirements\advanced\requirements_windows.txt
IF "%qt%" == "5" python -m pip install -r static\requirements\advanced\requirements_qt5.txt
IF "%qt%" == "6" python -m pip install -r static\requirements\advanced\requirements_qt6.txt
IF "%qt%" == "o" python -m pip install -r static\requirements\advanced\requirements_qt6_older.txt
2023-09-05 20:01:54 +00:00
IF "%qt%" == "m" python -m pip install -r static\requirements\advanced\requirements_qt6_middle.txt
2023-08-30 16:25:24 +00:00
IF "%qt%" == "t" python -m pip install -r static\requirements\advanced\requirements_qt6_test.txt
2023-09-20 19:58:17 +00:00
IF "%pillow%" == "o" python -m pip install -r static\requirements\advanced\requirements_pillow_old.txt
IF "%pillow%" == "n" python -m pip install -r static\requirements\advanced\requirements_pillow_new.txt
2023-08-30 16:25:24 +00:00
IF "%mpv%" == "o" python -m pip install -r static\requirements\advanced\requirements_mpv_old.txt
IF "%mpv%" == "n" python -m pip install -r static\requirements\advanced\requirements_mpv_new.txt
2023-09-05 20:01:54 +00:00
IF "%mpv%" == "t" python -m pip install -r static\requirements\advanced\requirements_mpv_test.txt
2023-08-30 16:25:24 +00:00
IF "%opencv%" == "o" python -m pip install -r static\requirements\advanced\requirements_opencv_old.txt
IF "%opencv%" == "n" python -m pip install -r static\requirements\advanced\requirements_opencv_new.txt
IF "%opencv%" == "t" python -m pip install -r static\requirements\advanced\requirements_opencv_test.txt
)
2022-10-19 20:44:13 +00:00
2024-04-03 21:15:48 +00:00
CALL %venv_location%\Scripts\deactivate.bat
2022-10-19 20:44:13 +00:00
2023-09-20 19:58:17 +00:00
ECHO --------
2023-08-30 16:25:24 +00:00
SET /P done="Done!"
2022-11-23 21:01:41 +00:00
popd
EXIT /B 0
:parse_fail
2023-09-20 19:58:17 +00:00
ECHO --------
2023-08-30 16:25:24 +00:00
SET /P done="Sorry, did not understand that input!"
2022-11-23 21:01:41 +00:00
popd
EXIT /B 1