在macOS 15版本的bash终端中配置网络代理,可以按照以下步骤进行设置:
配置步骤
1. 确定代理设置
首先,确认你的代理客户端的IP地址和端口。例如,假设你的HTTP代理为127.0.0.1:1088
。
2. 修改.bash_profile文件
-
打开终端并输入以下命令以编辑
.bash_profile
文件:bashvi ~/.bash_profile
-
在文件末尾添加以下内容以设置代理:
bashalias proxy='export http_proxy=http://127.0.0.1:1088; export https_proxy=$http_proxy' alias unproxy='unset http_proxy; unset https_proxy'
-
保存并退出编辑器。
3. 使配置生效
在终端中运行以下命令以使更改立即生效:
bash
source ~/.bash_profile
4. 测试代理设置
-
使用以下命令查看当前IP地址,以确认未使用代理:
bashcurl ipinfo.io
-
启用代理:
bashproxy
-
再次检查IP地址以确认代理是否生效:
bashcurl ipinfo.io
5. 禁用代理
如果需要关闭代理,可以使用以下命令:
bash
unproxy
附加配置(Git和NPM)
如果你还需要在Git或NPM中使用代理,请执行以下命令:
-
Git:
bashgit config --global http.proxy http://127.0.0.1:1088 git config --global https.proxy https://127.0.0.1:1088
-
NPM:
bashnpm config set proxy http://127.0.0.1:1088 npm config set https-proxy http://127.0.0.1:1088
通过这些步骤,你可以在macOS的bash终端中成功配置和使用网络代理。
Citations:
[1] https://www.hangge.com/blog/cache/detail_3138.html
[2] https://cloud.baidu.com/article/2825134
[3] https://www.cnblogs.com/oziasly/p/17100911.html
[4] https://www.cnblogs.com/ghj1976/p/macos-xia-huan-jing-bian-liang-de-pei-zhi-wen-jian.html
[5] https://blog.csdn.net/xiaxl/article/details/137552528
[6] https://blog.csdn.net/sinat_38719275/article/details/105989892
[7] https://blog.csdn.net/yang2330648064/article/details/142727271