编程语言
首页 > 编程语言> > 搭建c++ jupyter notebook

搭建c++ jupyter notebook

作者:互联网

本机配置
centos 7 x86_64
conda 4.10.1
首先我们需要安装Mamba,既然是用来加速Conda,那么我们可以直接使用下列命令来安装Mamba:

conda install -c conda-forge mamba

安装完成之后,当你运行mamba -V查看其版本时会发现返回的是Conda的版本信息,这是因为Mamba的本质是对Conda功能的覆盖,因此我们在使用Mamba时其实只要将原有的Conda语句中的conda替换为mamba即可,譬如我们常用的conda clean --all,即清空本地缓存安装包:
当然Mamba并不是重写了Conda所有的功能,只是针对一些Conda低效的功能进行重写,并添加了一些实用的新功能,接下来我们来对这些知识进行学习。

mamba create -n cling
source activate cling

mamba install xeus-cling -c conda-forge

mamba install jupyterlab -c conda-forge

jupyter notebook

标签:jupyter,c++,Mamba,notebook,conda,cling,mamba,forge,Conda
来源: https://www.cnblogs.com/simp/p/14723087.html