Last active
March 31, 2025 21:08
-
Star
(118)
You must be signed in to star a gist -
Fork
(26)
You must be signed in to fork a gist
-
-
Save dreamlu/cf7cbc0b8329ac145fa44342d6a1c01d to your computer and use it in GitHub Desktop.
windows终端翻墙,简易方式
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
环境:shadowsocks、windows | |
本地ss端口设置(这里1080) | |
cmd命令行:(不用socks5)(临时设置)(也可放置环境变量) | |
set http_proxy=http://127.0.0.1:1080 | |
set https_proxy=http://127.0.0.1:1080 | |
ps:一定要用cmd命令行,千万别用powershell !!! | |
简易测试命令:curl https://www.google.com(别用ping) |
PowerShell 的:
$env:http_proxy="http://127.0.0.1:1080" $env:https_proxy="http://127.0.0.1:1080"亲测可用
这个的确可用,不过要使用正确的本地端口,如果使用v2rayN的话,可以在app界面底部看到socks5和http端口
确实要写对端口才行,感谢
@inix 大佬请问具体怎么配置的呀,试了很多方法都不行
我的 shadowsocks 端口也是 1080的,求大佬解惑 安装 scoop 还是报错,但是 curl https://www.google.com 测试命令却没有问题
以管理员模式写入
$env:http_proxy="http://127.0.0.1:1080"
$env:https_proxy="http://127.0.0.1:1080"
以非管理员模式安装
iwr -useb get.scoop.sh | iex
感谢大佬
PowerShell 的:
$env:http_proxy="http://127.0.0.1:1080" $env:https_proxy="http://127.0.0.1:1080"亲测可用
thx, it's work
PowerShell 的:
$env:http_proxy="http://127.0.0.1:1080" $env:https_proxy="http://127.0.0.1:1080"亲测可用
very good!
如果你设置代理后遇到类似错误
VPN cause "ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True.
你可以设置
set no_proxy=localhost, 127.0.0.1, ::1
PowerShell 的:
$env:http_proxy="http://127.0.0.1:1080" $env:https_proxy="http://127.0.0.1:1080"亲测可用
it works, thank you!
PowerShell 的:
$env:http_proxy="http://127.0.0.1:1080" $env:https_proxy="http://127.0.0.1:1080"亲测可用
记得要把端口换成自己代理设置的端口,可能每个人代理用的端口不一样,需要自己看一下。
PowerShell 的:
$env:http_proxy="http://127.0.0.1:1080" $env:https_proxy="http://127.0.0.1:1080"亲测可用
这个的确可用,不过要使用正确的本地端口,如果使用v2rayN的话,可以在app界面底部看到socks5和http端口
好用,替换成软件底部显示的http端口即可
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
这个的确可用,不过要使用正确的本地端口,如果使用v2rayN的话,可以在app界面底部看到socks5和http端口