I installed the latest Python version (python-3.12.0-amd64.exe) today and installed the package. It complained that the worker isn't running.
I tried starting the worker by hand to see what's going on:
cd "%appdata%\Sublime Text 3\Packages\Anaconda"
python -B anaconda_server/jsonserver.py -p test 9999 DEBUG
I got the following errors:
- ModuleNotFoundError: No module named 'asyncore'
- ModuleNotFoundError: No module named 'asynchat'
Which could be solved by
python -m pip install pyasyncore
python -m pip install pyasynchat
Turns out that asyncore and asynchat (ref:https://pypi.org/project/pyasynchat/) are no longer part of the standard modules.
I installed the latest Python version (python-3.12.0-amd64.exe) today and installed the package. It complained that the worker isn't running.
I tried starting the worker by hand to see what's going on:
I got the following errors:
Which could be solved by
Turns out that asyncore and asynchat (ref:https://pypi.org/project/pyasynchat/) are no longer part of the standard modules.