Skip to content

Commit

Permalink
Upgrading to Version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
PushpenderIndia authored Dec 14, 2019
1 parent f8b9bdf commit 97c30c3
Showing 1 changed file with 23 additions and 24 deletions.
47 changes: 23 additions & 24 deletions installer_linux.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
rm /var/lib/dpkg/lock
rm /var/cache/apt/archives/lock
rm /var/lib/apt/lists/lock

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y wine32 python3-pip pyinstaller

#Downloading Required Executables
wget https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe
wget https://github.com/mhammond/pywin32/releases/download/b227/pywin32-227.win32-py3.7.exe

#Installing Executables in Wine
wine msiexec /i python-3.7.4.exe
wine pywin32-227.win32-py3.7.exe

#Installing Dependencies [Python Modules] in Wine
sudo wine ~/.wine/drive_c/Python37/python.exe -m pip install pyinstaller mss==4.0.3 essential_generators==0.9.2 six==1.12.0 python-xlib==0.25 win32gui pywin32

#Installing Dependencies in Linux
sudo python3 -m pip install mss==4.0.3
sudo python3 -m pip install essential_generators==0.9.2
sudo python3 -m pip install six==1.12.0
sudo python3 -m pip install python-xlib==0.25
rm /var/lib/dpkg/lock
rm /var/cache/apt/archives/lock
rm /var/lib/apt/lists/lock
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y wine32 python3-pip pyinstaller

#Downloading Required Executables
wget https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe

#Installing Executables in Wine
wine msiexec /i python-3.7.4.exe
wine pywin32-227.win32-py3.7.exe

#Installing Dependencies [Python Modules] in Wine
sudo wine ~/.wine/drive_c/Python37-32/python.exe -m pip install pyinstaller pynput mss==4.0.3 essential_generators==0.9.2 six==1.12.0 python-xlib==0.25 win32gui pywin32

#Installing Dependencies in Linux
sudo python3 -m pip install pynput
sudo python3 -m pip install mss==4.0.3
sudo python3 -m pip install essential_generators==0.9.2
sudo python3 -m pip install six==1.12.0
sudo python3 -m pip install python-xlib==0.25

0 comments on commit 97c30c3

Please sign in to comment.