jupyter-Notebook使用以及链接faiss库环境
开始
1.推荐时用conda安装faiss库
//cpu版本
conda install -c pytorch faiss-cpu
//gpu版本
conda install -c pytorch faiss-gpu
2.jupyter Notbook链接faiss库环境
1.安装 ipykernel
conda install ipykernel
2.将选择的环境与Jupyter Notbook 关联
python -m ipykernel install --user --name base --display-name "Python [conda env:base]"
3.切换
在conda promt或者cmd界面下唤起jupyter Notebook
$Jupyter Notebook
标签:jupyter,ipykernel,Notebook,conda,install,faiss From: https://www.cnblogs.com/NCU-zjf/p/16883908.html