我安装了anaconda的包,再次打开sublime,显示无法连接 localhost 49963
我用safari浏览器进入localhost,显示无法连接
不知道localhost具体什么意思
下面是上面图片上的文本
<Anaconda.anaconda_lib.workers.local_worker.LocalWorker object at 0x10a172fd0> initial check failed because:
can not connect to localhost in port 49963. tried to connect 21 times during 2 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", 49963))
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.
lz解决了吗