0%

开发环境设置

node

npm加速

修改成腾讯云镜像源

1
npm config set registry http://mirrors.cloud.tencent.com/npm/

验证命令

1
npm config get registry

其他源:

淘宝定制源

1
2
npm install -g cnpm --registry=https://registry.npmmirror.com
cnpm install hexo-cli -g

brew

https://mirrors.tuna.tsinghua.edu.cn/help/homebrew/
https://mirror.tuna.tsinghua.edu.cn/help/homebrew/

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 手动设置
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"

# 注:自 brew 4.0 起,大部分 Homebrew 用户无需设置 homebrew/core 和 homebrew/cask 镜像,只需设置 HOMEBREW_API_DOMAIN 即可。
# 如果需要使用 Homebrew 的开发命令 (如 `brew cat <formula>`),则仍然需要设置 homebrew/core 和 homebrew/cask 镜像。
# 请按需执行如下两行命令:
brew tap --custom-remote --force-auto-update homebrew/core https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
brew tap --custom-remote --force-auto-update homebrew/cask https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git

# 除 homebrew/core 和 homebrew/cask 仓库外的 tap 仓库仍然需要设置镜像
brew tap --custom-remote --force-auto-update homebrew/command-not-found https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-command-not-found.git
brew update

# 或使用下面的几行命令自动设置
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
for tap in core cask command-not-found; do
brew tap --custom-remote --force-auto-update "homebrew/${tap}" "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-${tap}.git"
done
brew update

conda

在 Ubuntu 系统上安装 Miniconda 是一个相对简单的过程。以下是具体的步骤:

步骤 1:下载 Miniconda

  1. 首先访问 Miniconda 官方下载页面,选择适合你系统的安装包。例如,如果你使用的是 64 位的 Ubuntu 系统,可以使用以下命令直接下载 Miniconda 的安装脚本:

    1
    wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

    如果你使用的是 ARM 架构(如 Raspberry Pi),请确保下载 ARM 版。

步骤 2:运行安装脚本

  1. 在下载脚本后,运行以下命令来执行安装:

    1
    bash Miniconda3-latest-Linux-x86_64.sh
  2. 你会被要求阅读并接受许可协议,输入 yes 以继续安装。

  3. 安装过程中,你可以选择默认的安装路径,或者输入自定义路径。

  4. 当安装脚本完成时,系统将提示你是否将 conda 加入你的 PATH。选择 yes,这样可以确保以后可以直接使用 conda 命令。

1
conda config --set auto_activate_base false

步骤 3:激活 Miniconda

完成安装后,运行以下命令使安装生效:

1
source ~/.bashrc

步骤 4:验证安装

验证 Miniconda 是否正确安装,可以运行以下命令检查 conda 版本:

1
conda --version

这将返回已安装的 conda 版本号。

步骤 5:更新 Conda(可选)

安装完成后,建议你更新 conda 以获取最新版本:

1
conda update conda

完成

现在你已经成功在 Ubuntu 上安装了 Miniconda,并可以使用它来创建和管理 Python 环境。