1、path添加以下内容

  D:\Users\test\anaconda3\
  D:\Users\test\anaconda3\condabin\
  D:\Users\test\anaconda3\Scripts\

2、添加下载源

  2.1 查看源

conda config --show-sources

  2.2 添加清华源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

  2.3 删除源----本次不需要删除,如果需要的话可以按此方法操作

conda config --remove channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'

3、安装

conda install jupyterlab

报错 提示 conda "Can't connect to HTTPS URL because the SSL module is not available."

修复:将Anaconda\Library\bin目录下libcrypto-1_1-x64.dll和libssl-1_1-x64.dll 复制到Anaconda\DLLs 下

4、安装成功后运行  jupyter lab

报错 提示 ModuleNotFoundError: No module named 'pysqlite2'

修复:去sqlite3官网,根据自己的系统和位数(32位还是64位)下载对应的插件:sqlite3官网地址:https://www.sqlite.org/download.html ,下载完后,解压缩,将文件复制到Anaconda的DLLs目录下

5、运行 jupyter lab 搞定

 

posted on 2022-10-17 17:58  程序员丁先生  阅读(320)  评论(0编辑  收藏  举报