You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Despite the sparse instructions, I have managed to installl the old versions of python and pip required and successfully built GWSL. I now have working binaries in the dist\GWSL_version directory, but it doesn't run correctly because it is not fully installed.
How exactly do I install GWSL once it has been built? What I would like to be able to do is to write a proper guide to building it that can be followed by mere mortals, and to distribute freely available binaries for this GPL licensed program as a favor to the author since he is very busy and has no time to make freely available builds.
Can the author please explain exactly how to properly install GWSL to save me considerable time and effort figuring it out myself.
The text was updated successfully, but these errors were encountered:
From the official guide, Python 3.7 is recommended.
We will be using virtualenv to prevent unexpected errors like
raise error(exception.winerror, exception.function, exception.strerror)
win32ctypes.pywin32.pywintypes.error: (1920, 'LoadLibraryExW', 'The file cannot be accessed by the system.')
install virtualenv if you haven't
pip install virtualenv
Upon trials, it seems for Python versions newer than 3.7 it is possible to encounter ImportError: No module named _bootlocale, then you may need the latest version of PyInstaller by removing ==3.5 in the next command
Despite the sparse instructions, I have managed to installl the old versions of python and pip required and successfully built GWSL. I now have working binaries in the dist\GWSL_version directory, but it doesn't run correctly because it is not fully installed.
How exactly do I install GWSL once it has been built? What I would like to be able to do is to write a proper guide to building it that can be followed by mere mortals, and to distribute freely available binaries for this GPL licensed program as a favor to the author since he is very busy and has no time to make freely available builds.
Can the author please explain exactly how to properly install GWSL to save me considerable time and effort figuring it out myself.
The text was updated successfully, but these errors were encountered: