https://chatgpt.com/codex ,在这里选“在您的 IDE 中尝试”:
是代理配置的原因吗?
1
zllfdd OP 还是说我想多了,Codex 不能共享 chatgpt team plan ,需要单独订阅?
|
2
SignUpWithSolana 66 天前 via iPhone
我在墙外,顺利登录了,应该是你代理的问题
|
3
zhenzhenhuang370 52 天前
我在 vscode 中的插件一直登录不了,非常苦恼。
|
4
zllfdd OP @zhenzhenhuang370 安装 codex cli ,在 codex cli 中登录,终端要设置好代理,codex cli 登录成功后,
vscode 的就自动登录了。 |
5
diligentCoding 5 天前
需要在终端正确配置网络访问代理,插件及 wsl 使用的网络有时候默认不是走的全局映射;
参照 https://learn.microsoft.com/en-us/windows/wsl/networking 微软的 wsl 配置指南基本三步走 1 、ip route show | grep -i default | awk '{ print $3}'` 打印拿到宿主 ip 2 、export http_proxy="http://${ip_host}:7890" export https_proxy="https://${ip_host}:7890" ip_host 为第一步使用的 ip 3 、curl https://chatgpt.com/ 验证 |