conda info --envs
conda info -e
conda env list
conda create -n newenvname python=3.10
conda activate newenvname
conda deactivate
conda list
conda install nb_conda
jupyter notebook
除了base环境外,新环境安装nb_conda成功后,这里会显示除了python3以外的conda环境,如下图。
更新conda到最新版本:conda update -n base conda
然后执行:conda update --all
conda导入导出为yml:
conda导入导出为txt:
pip导入导出为txt:
# 添加清华镜像的操作
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
# 添加中科大镜像
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
# 删除源
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 查看源
conda config --show-sources
一、在conda虚拟环境下,有些包无法通过conda install 安装, 通过pip install安装会安装到全局路径
python -m pip install pymesh (Linux)
py -m pip install pymesh (Windows)
二、当你安装一个包死活安装不上时,打开https://pypi.org/,搜索项目,看看它依赖的python版本!!!
三、查看安装命令
https://anaconda.org/ 网址搜索包名,查看安装命令,未必所有的包安装都是 conda install [packagename],例如:open3d的安装【地址】
四、python版本过高,试试低版本的python