-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8b9bdf
commit 97c30c3
Showing
1 changed file
with
23 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |