siredmar / winepatchfusion360installer

Contains a script that makes the Fusion 360 installer install in Linux using wine
34 stars 4 forks source link

cx_Freeze: Python error in main script #9

Closed madurani closed 4 years ago

madurani commented 4 years ago

Hello guys,

Guide for installation of Fusion360 worked fine for a long time, but current version of Fusion keeps crashing with some error(details are in png attachment):

error occurs after executing command: wine streamer.exe -p deploy -g -f log.txt --quiet;"

Fusion360

HendrikRoth commented 4 years ago

Same issue here

madurani commented 4 years ago

Mistake was found/fixed. Script downloads file platform.py from path: wget "https://raw.githubusercontent.com/python/cpython/master/Lib/platform.py"

In the path is folder master. It looks, that in master version is python 3.8, but Fusion use python 3.7. For fixing of problem you only need to change location of path from "master" to "3.7" and installation will finish successfully (only for current version of Fusion360).

Note: Correct path is: wget https://raw.githubusercontent.com/python/cpython/3.7/Lib/platform.py

siredmar commented 4 years ago

Fixed the URL. Thanks for reporting!