Skip to content

Commit

Permalink
Fix installer issue
Browse files Browse the repository at this point in the history
Signed-off-by: Nerya Meshulam <Nerya.Meshulam@wdc.com>
  • Loading branch information
nerya-meshulam-wdc committed Dec 2, 2018
1 parent 9ea61c4 commit d4dc966
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Poke-A-Bird.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
REM supports poke-a-bird_prerequisites_0.2 and above
@echo off

setlocal
PATH=%PATH%;%LOCALAPPDATA%\Programs\Python\Python37-32\;%LOCALAPPDATA%\Programs\Python\Python37-32\Scripts
set PATH=%LOCALAPPDATA%\Programs\Python\Python37-32\;%LOCALAPPDATA%\Programs\Python\Python37-32\Scripts
set PYTHONHOME=
set PYTHONPATH=
python.exe .\Poke-A-Bird.py
endlocal
1 change: 0 additions & 1 deletion Poke-A-Bird.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
import time
import PIL
from PIL import Image
from pandas import to_datetime
from Pmw import Balloon

__version__ = '0.4'
Expand Down
4 changes: 3 additions & 1 deletion prerequisites/bin/install_packages.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
@echo off

setlocal
PATH=%PATH%;%LOCALAPPDATA%\Programs\Python\Python37-32\;%LOCALAPPDATA%\Programs\Python\Python37-32\Scripts
set PATH=%LOCALAPPDATA%\Programs\Python\Python37-32\;%LOCALAPPDATA%\Programs\Python\Python37-32\Scripts
set PYTHONHOME=
set PYTHONPATH=
pip3 -q --disable-pip-version-check install %1\Pillow-5.3.0-cp37-cp37m-win32.whl
pip3 -q --disable-pip-version-check install %1\python-vlc-3.0.4106.tar.gz
pip3 -q --disable-pip-version-check install %1\pyttk-0.3.2.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions prerequisites/installer.iss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#define MyAppName "Poke-A-Bird Prerequisites"
#define MyAppVersion "0.4"
#define MyAppVersion "0.5"
#define MyAppPublisher "Elad Yacovi and Nerya Meshulam, Tel Aviv University"
#define MyAppURL "https://github.com/nerya21/Poke-A-Bird"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{11DC48E1-8608-4767-BD8C-088F72C18D37}}
AppId={{38E0C05C-2A59-4D95-BE8B-7C307C1A777C}}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
Expand Down

0 comments on commit d4dc966

Please sign in to comment.