Sublime Forum

Build4192 don't start anaconda

#1

Who has encountered such an error before? Can you guide me in handling it? Thank you very much!

If anaconda works just fine after you received this error and the command above worked you can make anaconda to do not show you this error anymore setting the ‘swallow_startup_errors’ to ‘true’ in your configuration file.
…last message repeated one more time in the last 10s
anacondaST3: ERROR - Anaconda worker could not start because:

connection to localhost:41129 timed out after 0.2s. tried to connect 7 times during 2.0 seconds

check that there is Python process executing the anaconda jsonserver.py script running in your system. If there is, check that you can connect to your localhost writing the following script in your Sublime Text 3 console:

import socket; socket.socket(socket.AF_INET, socket.SOCK_STREAM).connect((“localhost”, 41129))

0 Likes

#2

The error message in general means required background task, which runs on dedicated python interpreter installed on your system was not started.

I can reproduce anaconda not starting with python 3.12.
It however starts fine with python 3.8.

Appears some of the billions of breaking changes introduced to each release of python broke plugin compatibility.

see: https://github.com/DamnWidget/anaconda/issues/945

0 Likes

#3

Okay, I see. Thank you.

0 Likes