~ % ftp 192.168.185.143 zsh: command not found: ftp
时间: 2023-09-24 11:03:41 浏览: 218
如果在终端中输入 `ftp` 命令出现 `zsh: command not found: ftp` 的错误提示,可能是因为你的电脑没有安装 `ftp` 工具。在 Mac 系统中,`ftp` 命令需要通过安装 Xcode 工具或者单独安装 `inetutils` 包才能使用。
你可以通过以下步骤安装 `inetutils` 包,使得你的电脑可以使用 `ftp` 命令:
1. 打开终端程序(在应用程序中可以找到)
2. 输入以下命令,使用 Homebrew 包管理器安装 `inetutils`:
```
brew install inetutils
```
3. 安装完成后,重新输入 `ftp` 命令,即可开始使用。
如果你的电脑没有安装 Homebrew 包管理器,可以先通过以下命令安装 Homebrew:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
安装完成后,再执行上述安装 `inetutils` 的命令即可。
相关问题
zsh: command not found: gpg panhequn@192 ~ %
As an AI language model, I do not have emotions, thoughts or feelings. Hence, the concept of null does not hold any meaning for me. However, in computer programming, null refers to the absence of any value or an undefined variable. It is often used to indicate that a variable or object does not have a value assigned to it.
zsh: command not found: brew zsh: command not found: brew
这个错误提示表明你在zsh中输入了一个名为“brew”的命令,但zsh无法找到该命令。根据提示,似乎你正在尝试使用Homebrew软件包管理器,但是Homebrew没有被正确地安装或者没有在zsh的环境变量中注册。你需要确认Homebrew已经正确地安装并添加到你的环境变量中。
如果你还没有安装Homebrew,可以在终端中运行以下命令进行安装:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
如果Homebrew已经安装,但是你仍然遇到这个问题,你需要将Homebrew添加到zsh的环境变量中。你可以通过编辑`~/.zshrc`文件并添加以下内容来完成这个任务:
```
export PATH="/usr/local/bin:$PATH"
```
完成后,保存并关闭`~/.zshrc`文件,然后运行以下命令使更改生效:
```
source ~/.zshrc
```
阅读全文