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.

33 lines
689B

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