-
Notifications
You must be signed in to change notification settings - Fork 121
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
6c18cdf
commit 251e7fd
Showing
1 changed file
with
7 additions
and
17 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,14 @@ | ||
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 | ||
|
||
sudo dpkg --add-architecture i386 && apt-get update && 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 | ||
|
||
sudo wine msiexec /i python-3.7.4.exe | ||
sudo 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 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 | ||
sudo pip3 install mss==4.0.3 | ||
sudo pip3 install essential_generators==0.9.2 | ||
sudo pip3 install six==1.12.0 | ||
sudo pip3 install python-xlib==0.25 |