My English is not very good, so I use a translation tool.
Currently, the desktop version lacks a feature for proxy settings. If users only set a local global proxy, it only works for the js side of node. and is ineffective for the Python backend.
My personal solution is to add the following at the very top of main.py:
os.environ[“http_proxy”] = “http://127.0.0.1:10809”
os.environ[“https_proxy”] = “http://127.0.0.1:10809”
However, this means I have to add it again every time when comfyui update. I believe this setting should be added to the menu to avoid repeated work for users.