File: build_exe.bat

package info (click to toggle)
python-opem 1.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,076 kB
  • sloc: python: 7,777; sh: 27; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 337 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
python --version | find /i "Python 3.4" > nul
echo -----
if errorlevel 1 (
	echo Warning : Please use Python 3.4.x
) else (
	echo Python version check done!
)
echo -----
python -m pip install –upgrade pip
python -m pip install -r requirements.txt
python -m pip install "PyInstaller>=3.3"
python -m PyInstaller OPEM.spec
pause