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
{{ message }}
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
Getting the following error on windows when using the latest develop branch's "CLSniper.py"
RuntimeError:
Attempt to start a new process before the current process
has finished its bootstrapping phase.
This probably means that you are on Windows and you have
forgotten to use the proper idiom in the main module:
if __name__ == '__main__':
freeze_support()
The "freeze_support()" line can be omitted if the program
is not going to be frozen to produce a Windows executable.
Seems like the code isn't windows compatible?
The text was updated successfully, but these errors were encountered:
Calling freeze_support() has no effect when invoked on any operating system other than Windows. In addition, if the module is being run normally by the Python interpreter on Windows (the program has not been frozen), then freeze_support() has no effect.
@teh3vil How exactly are you executing the program? Are you invoking it with the python command from the terminal or double-clicking it or something else?
Getting the following error on windows when using the latest develop branch's "CLSniper.py"
Seems like the code isn't windows compatible?
The text was updated successfully, but these errors were encountered: