1. conda 环境需要在 code-server 前安装,在激活conda 环境后 启动code-server 才能正常使用
# 在安装完 miniconda 后,使用命令将conda 加入应用列表
source ~/.bashrc
# 用命令将把conda 环境初始化
conda init
2. vscode 扩展报错,无法使用右键粘贴,部分扩展无法启用例如: 我的是提示 s.notebooks.onDidChangeCellMetadata is not a function jupyter 这个扩展无法启动
查看出错log 提示:
'crypto.subtle' is not available so webviews will not work. This is likely because the editor is not running in a secure context
这里解释一下,这里实际上是浏览器在访问 code-server 时候没有使用HTTPS 协议导致的,第一种解决方法就是自己搭建反向代理,用https 证书解决
这里讲一下第二种方法,开启chrome 的 unsafely-treat-insecure-origin-as-secure 功能
方法是进入chrome flag管理界面 chrome://flags/#unsafely-treat-insecure-origin-as-secure
将对应的 code-server 网址填入对应的网址框,并开启该功能,这样很多 code-server 扩展的问题就解决了。