Advertisement
FlyFar

wine_setup.sh

Jan 13th, 2024
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | Cybersecurity | 0 0
  1. #!/bin/bash
  2.  
  3. sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get -yq install wine32
  4. wget -q https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi -O /tmp/python-2.7.msi
  5. wine msiexec /q /i /tmp/python-2.7.msi
  6. wine C:/Python27/Scripts/pip.exe install -r requirements.txt
  7. rm /tmp/python-2.7.msi
  8.  
Tags: Wine setup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement