如何让MacOS「终端」走代理

MacOS 操作系统中,默认情况下,终端命令行不会通过代理进行网络连接 。这导致在应用软件研发过程中,许多需要通过命令行下载安装的软件或依赖包无法成功安装。经常出现Failed to connect to xxx port 443 after 75329 ms: Couldn't connect to server错误提醒。

如果您需要让 Mac终端命令行走代理,可以按照以下步骤进行设置:

一、配置bash_profile文件

  • 首先:在当前用户根目录找到(新建)一个文件名为 .bash_profile文件,然后输入以下代码:
bash 复制代码
function proxy_off(){
        unset http_proxy
        unset https_proxy
        unset ftp_proxy
        unset rsync_proxy
        echo -e "已关闭代理"
}
 
function proxy_on() {
        export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
        export http_proxy="http://127.0.0.1:7890"
        export https_proxy=$http_proxy
        export ftp_proxy=$http_proxy
        export rsync_proxy=$http_proxy
        export HTTP_PROXY=$http_proxy
        export HTTPS_PROXY=$http_proxy
        export FTP_PROXY=$http_proxy
        export RSYNC_PROXY=$http_proxy
        echo -e "已开启代理"
}

函数中的 http_proxy="http://127.0.0.1:7890"就是你代理的端口和IP,比方说我用的代理,默认端口就是7890。

  • 然后:
    当让终端走代理的时候,输入: source ~/.bash_profile proxy_on
    当想关闭代理的时候,输入:source ~/.bash_profile proxy_off

二、实操

首先,打开终端,输入:

bash 复制代码
source  ~/.bash_profile
proxy_on

然后,测试是否开启成功:

bash 复制代码
curl www.google.com

当安装相应软件后,关闭代理,输入:

bash 复制代码
source  ~/.bash_profile
proxy_off #或者直接关闭终端窗口
相关推荐
阿7_QuQ2 小时前
Mac怎么远程控制Windows?
macos
tanghongchang1238 小时前
Mac Android studio 升级LadyBug 版本,所产生的bug
macos·android studio·ladybug
iBaoxing16 小时前
mac 使用 launchctl 实现每次登录系统时 frpc 就会自动启动
macos
鹏阿鹏16 小时前
【Mac】终端改色-让用户名和主机名有颜色
macos
易我数据恢复大师20 小时前
怎么设置电脑密码?Windows和Mac设置密码的方法
windows·macos·电脑
几维安全1 天前
如何保护你的 iOS 应用免受逆向工程攻击
macos·objective-c·cocoa
18号房客1 天前
macOS开发环境配置与应用开发教程(一)
vscode·macos·visualstudio·eclipse·intellij-idea·phpstorm·visual studio
一道微光1 天前
Mac的M2芯片运行lightgbm报错,其他python包可用,x86_x64架构运行
开发语言·python·macos
CYBEREXP20082 天前
MacOS M3源代码编译Qt6.8.1
c++·qt·macos
SoraLuna2 天前
「Mac畅玩鸿蒙与硬件47」UI互动应用篇24 - 虚拟音乐控制台
开发语言·macos·ui·华为·harmonyos