Vincent安装与配置全流程
安装Vincent需要以下步骤:
- environmental preparation:
- 确保已安装最新版VS Code(官网下载)
- 建议通过Anaconda管理Python环境
- Plug-in Installation:
- VS Code扩展面板搜索
BespoAI.vincent
- 点击安装按钮(约10MB下载量)
- VS Code扩展面板搜索
- dependency check:
- 终端执行
pip install jupyter
- validate (a theory)
jupyter --version
exports
- 终端执行
- initial configuration:
- 重启VS Code激活插件
- 通过状态栏选择Python解释器
caveat:
- 推荐使用Conda环境避免包冲突
- 首次使用时建议允许所有扩展权限
- 网络波动可能导致安装超时,可配置镜像源
完成上述步骤后,通过创建.ipynb文件即可开始使用所有功能。
This answer comes from the articleVincent: VSCODE plugin for data analysis in Jupyter notesThe