-
Notifications
You must be signed in to change notification settings - Fork 1
/
install-dependencies.bat
33 lines (27 loc) · 1.54 KB
/
install-dependencies.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
@echo off
echo This script will guide you to install everything you need to run the Viewer and Config Manager :-)
pause
cls
echo You will now install Python 3.9 from the Microsoft Store.
echo I will open the Microsoft Store for you. Install Python 3.9 :-)
echo After Python 3 finished installing, close the Microsoft Store and return to this window.
echo If you have Python 3 already installed you can skip this step.
echo Alternatively you can also use the regular Python 3.9.2 installer if you so wish. In that case skip this step.
echo To skip this step, close the Microsoft Store after it opens and return to this window.
pause
explorer "ms-windows-store://publisher/?name=Python Software Foundation"
echo ------------------------------------------------------------
echo You can continue here once Python 3 is installed... :-)
pause
cls
echo I will now install the required Python Modules...
echo Installing: matplotlib configparser numpy PySimpleGUI
sleep 5
pip3 install --upgrade pip
pip3 install --upgrade matplotlib configparser numpy PySimpleGUI
echo ------------------------------------------------------------
echo All done and dusted! :-)
echo You can now open ".thcam" files with the Viewer. You can now also edit and view ".thcam" and ".thcfg" config files with the Config Manager.
echo The first time you will have to use "open with" on a ".thcam" / ".thcfg" file and select the Viewer or Config Manager .BAT file to open the file.
echo To make your life easyer, you can check the "Always use this App to open .thcam / .thcfg files." box. ;-)
timeout /T 300