Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
667B

  1. #!/bin/bash
  2. rm -rf ~/.winepy3
  3. rm -rf ~/.winepy3_x86
  4. rm -rf ~/.winepy3_x64
  5. export WINEARCH=win32
  6. export WINEPREFIX=~/.winepy3_x86
  7. wineboot
  8. winetricks vcrun2010
  9. winetricks corefonts
  10. winetricks fontsmooth=rgb
  11. # cd data/windows/python
  12. # msiexec /i python-3.4.4.msi /qn
  13. # wine cx_Freeze-4.3.4.win32-py3.4.exe
  14. # wine PyQt5-5.5.1-gpl-Py3.4-Qt5.5.1-x32.exe
  15. # cd ../../..
  16. export WINEARCH=win64
  17. export WINEPREFIX=~/.winepy3_x64
  18. wineboot
  19. winetricks vcrun2010
  20. winetricks corefonts
  21. winetricks fontsmooth=rgb
  22. # cd data/windows/python
  23. # msiexec /i python-3.4.4.amd64.msi /qn
  24. # wine cx_Freeze-4.3.4.win-amd64-py3.4.exe
  25. # wine PyQt5-5.5.1-gpl-Py3.4-Qt5.5.1-x64.exe
  26. # cd ../../..