赞
踩
本篇博客讲解如何在Windows11系统中安装与注销Linux子系统,并配置conda环境、jupyter环境,实现在Local浏览器启动jupyter并运行项目。
bcdedit /set hypervisorlaunchtype auto
wsl --install -d Ubuntu
或者,在Microsoft应用商店选择自己喜欢的系统版本安装(搜索关键词:linux;ubuntu都行)
安装完成后,直接在下载的页面点击“Open”或“启动”,会弹出子系统的终端窗口。不出意外的话,里面会显示一串“正在安装配置系统”的英文,等待安装完成即可。
安装完成后,会提示输入创建用户名与密码,输入即可。
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh
sudo apt-get install build-essential
conda config # 添加清华源 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ # 添加阿里云镜像源 conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/free/ conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/main/ # 添加中科大源 conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda create -n env_name python=3.8
/mnt/
路径下,/mnt/c
表示C盘,/mnt/d
表示D盘,以此类推)cd /mnt/your_path/
pip install -r pkgs.txt
conda install jupyter
pip install jupyter
sudo apt install net-tools
ifconfig
jupyter notebook --ip=刚才复制的ip地址
wslconfig /l
wslconfig /u 系统名
[1] https://zhuanlan.zhihu.com/p/475462241
[2] https://www.jianshu.com/p/47ed480daccc
[3] https://blog.csdn.net/qq_32650831/article/details/127952502
By the way,记录一下latex环境报错(RuntimeError: Failed to process string with tex because latex could not be found
)问题的解决方法
pip install latex
sudo apt-get install dvipng
sudo apt-get install -y texlive texlive-latex-extra texlive-latex-recommended
sudo apt-get install cm-super
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。