windows安装wsl+conda环境配置+pycharm设置
一. windows 安装 wsl
以管理员身份运行 Windows PowerShell
执行:
1
wsl --install
出现以下提示表示安装成功:
重启电脑,自动弹出子系统启动界面
默认为 ubuntu
设置用户名密码
完毕
默认安装在 C 盘,如果想移动到其他盘,参考:
二. conda 环境设置
apt-get 替换国内镜像源
https://blog.csdn.net/qq_21095573/article/details/99736630
https://developer.aliyun.com/mirror/ubuntu?spm=a2c6h.13651102.0.0.3e221b11fHrGAW
进入目录
/etc/apt/
:1
cd /etc/apt/
备份当前
sources.list
:1
sudo cp sources.list sources.list.copy
按照国内镜像源配置说明更改
sources.list
内容:更换完后,执行:
1
sudo apt-get update
如果没有出现异常则表示更换完毕
安装 gcc 环境
1
sudo apt install gcc build-essential
安装 conda
https://blog.csdn.net/weixin_44159487/article/details/105620256
推荐安装 miniconda
1
2
3
4
5
6# 返回用户目录
cd ~
# 安装miniconda包
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
# 执行sh文件
bash Miniconda3-latest-Linux-x86_64.sh按照提示安装即可
安装完毕后重启终端,如果能看到(base)
表示安装成功
更换 conda 的 pip 安装源
永久更换清华源
1
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
但是个人更喜欢配置多个源,根据上图可以看到 pip 的配置文件存放在
/home/当前用户/.config/pip/pip.conf
中修改该文件:
1
2
3
4
5
6
7[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple/
extra-index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
mirrors.aliyun.com这里注意不要配置官方源,否则默认会从官方源下载,导致下载速度还是很慢
测试一下
创建虚拟环境
1
conda create -n test python=3.10
切换到
test
环境1
conda activate test
尝试安装一些包
完毕
三. pycharm 设置
前提!前提!前提!需要 pycharm 专业版!!!如果不是专业版无法连接到 wsl 中的 conda 环境
解释器设置选择 WSL
后续操作同主系统直接使用 conda