Skip to content

Commit

Permalink
feat: add homrbrew and nvm
Browse files Browse the repository at this point in the history
  • Loading branch information
MR-Addict committed Oct 19, 2024
1 parent 921d91c commit e8ec61f
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,19 @@

- [使用 Wiringpi](rpi/wiringpi.md)

- [OpenWrt]()

- [使用 Init](openwrt/init.md)
- [使用 Vim](openwrt/vim.md)
- [使用 Uhttpd](openwrt/uhttpd.md)
- [使用 Mosquitto](openwrt/mosquitto.md)
- [其他常用命令](openwrt/others.md)

- [Mac]()

- [使用快捷键](mac/shortcuts.md)
- [使用 快捷键](mac/shortcuts.md)
- [使用 NVM](mac/nvm.md)
- [使用 Homebrew](mac/homebrew.md)

- [Windows]()

Expand All @@ -35,14 +45,6 @@
- [使用 Linux 用户和用户组](linux/users.md)
- [其他配置及常用命令](linux/others.md)

- [OpenWrt]()

- [使用 Init](openwrt/init.md)
- [使用 Vim](openwrt/vim.md)
- [使用 Uhttpd](openwrt/uhttpd.md)
- [使用 Mosquitto](openwrt/mosquitto.md)
- [其他常用命令](openwrt/others.md)

- [学习教程]()

- [使用 Node](tutorial/node.md)
Expand Down
8 changes: 8 additions & 0 deletions src/linux/vim.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ sudo apt-get install vim -y

## 二、配置 Vim

> 注意 💥
>
> 你可以在打开vim 编辑器之后,输入下面的命令查看支持的配置文件位置:
>
> ```sh
> :version
> ```
进入 vim 配置文件:
```sh
Expand Down
73 changes: 73 additions & 0 deletions src/mac/hombrew.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# 使用 Homebrew

[Homebrew](https://brew.sh) 是 macOS 上的软件包管理器,可以帮助你安装和管理软件包。它是一个非常强大的工具,可以帮助你快速安装软件包,而不需要手动下载和安装。

## 一、安装 xcode-select

在安装 Homebrew 之前,你需要安装 `xcode-select`,它是 macOS 上的一个命令行工具,可以帮助你安装开发工具,如git、make、gcc等。

```sh
xcode-select --install
```

## 二、安装 Homebrew

安装 Homebrew 非常简单,只需要在终端中运行以下命令即可:

```sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

## 三、配置 Homebrew

安装完成后,你需要配置 Homebrew,以便它可以正常工作。首先,你需要将 Homebrew 的路径添加到你的 `PATH` 环境变量中,正常情况下,如果你是使用 `zsh`,那么你可以将以下命令添加到你的 `~/.zshrc` 文件中:

```bash
eval "$(/opt/homebrew/bin/brew shellenv)"
```

## 四、使用 Homebrew

检查 Homebrew 是否安装成功:

```sh
brew --version
```

检查系统是否正常:

```sh
brew doctor
```

更新 Homebrew:

```sh
brew update
```

升级 Homebrew:

```sh
brew upgrade
```

## 五、常用命令

**nvm**

```sh
brew install nvm
```

**htop**

```sh
brew install htop
```

**wget**

```sh
brew install wget
```
23 changes: 23 additions & 0 deletions src/mac/nvm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 使用 NVM

## 一、安装 NVM

使用 homebrew 安装 nvm:

```sh
brew install nvm
```

## 二、配置 NVM

`~/.zshrc``~/.bashrc` 中添加以下内容:

```sh
export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
```

## 三、使用 NVM

关于如何使用 nvm,请参考 [Windows/使用 NVM](../windows/nvm.md)

0 comments on commit e8ec61f

Please sign in to comment.