您可以使用
为atom设置代理apm config set http-proxy http://....
但是如何使用apm config取消设置代理。我试过了
apm config unset http-proxy
但它不起作用
答案 0 :(得分:5)
试试这个:
apm config delete <your-key>
<your-key>
是您的http代理,因此成为: apm config delete http-proxy
然后使用以下方法验证:
apm config get <key>
应该设置为null。无论如何,您可以通过以下方式浏览命令列表:
apm help
然后
apm help <your-chosen-command>
答案 1 :(得分:1)
我不确定该命令是什么,但您可以随时直接编辑.apmrc
文件。对我来说,它位于~\.atom\.apmrc
。