Anaconda is stuck at Initializing when it opens (cannot open)

One theory I found is that anaconda has an advertisement loading function. This function needs to be connected to the Internet, but sometimes the domestic network environment cannot connect to the target network, so when opening the anaconda navigator, it will always be stuck at Initializing due to network problems.
Solution: Method 1. Disconnect the network. Without the network, the advertisement cannot be loaded, and it can be opened. However, it is a bit troublesome to disconnect the network again when starting up next time.

Method 2 : Find the script that stores this function in the anaconda installation path, and limit the access time of the advertisement loading function.

Refer to the path
D:\anaconda3\Lib\site-packages\anaconda_navigator\utils\attribution 

Find resources in the attribution folder and open it. If you can’t open it by double-clicking directly, right-click and select the open method as Notepad, and then refer to the picture to find the position of the red box in the picture and modify it line by line .

After I opened it, the original content of that location was requests.get(url). After changing it to requests.get(url,timeout(0.01,0.1)), the anaconda navigator was successfully opened.

Original link: (37 messages) anaconda navigator is stuck at Initializing when it opens

Supongo que te gusta

Origin blog.csdn.net/great_yzl/article/details/129049443
Recomendado
Clasificación