跳转至

Python 环境

pip 管理

习惯使用 pip 管理的话,按照如下操作:

sudo apt install python-is-python3
sudo apt install python3-pip

如果不习惯使用魔法上网,建议更改为清华的镜像源.

# 使用 TUNA 镜像源更新 pip
$ pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U

# 将 pip 源设置为 TUNA
$ pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

miniconda 管理

使用 miniconda 的话,建议按照官方的方法来:miniconda官方安装文档

快速安装的话,复制以下代码即可:

curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -o miniconda.exe
start /wait "" miniconda.exe /S
del miniconda.exe

虚拟环境的提醒

虚拟环境的激活在 Linux 当中的路径是不太一样的,如果当你按下 Ctrl+` 之后,激活的环境不是现在的虚拟环境,手动激活:

# venv 环境
source .venv/bin/activate

# conda 
conda activate .conda

一般而言还是不需要手动激活的.

评论