记录一次vscode无法连接远程服务器错误
vscode远程模式一直无法连接服务器,服务器本身是通过代理访问网络的,后面发现是wget没有设置代理访问
费了好多时间······
(base) user@user-MS-7885:~$ cat .wgetrc
use_proxy=on
http_proxy=http://127.0.0.1:8123
https_proxy=http://127.0.0.1:8123
no_proxy = 127.0.0.1
check-certificate=off