Ubuntu 安装 conda

conda安装与使用

Ubuntu 安装 conda

安装python虚拟环境:

conda create -n py36 python=3.6
conda activate py36
python --version
conda list

其他 conda 命令

#创建虚拟环境
conda create -n your_env_name python=X.X(3.6、3.7等)
 
#激活虚拟环境
source activate your_env_name(虚拟环境名称)
 
#退出虚拟环境
source deactivate your_env_name(虚拟环境名称)
 
#删除虚拟环境
conda remove -n your_env_name(虚拟环境名称) --all
 
#查看安装了哪些包
conda list
 
#安装包
conda install package_name(包名)
conda install scrapy==1.3 # 安装指定版本的包
conda install -n 环境名 包名 # 在conda指定的某个环境中安装包
conda uninstall xxx   # 卸载xxx包
 
#查看当前存在哪些虚拟环境
conda env list 
#或 
conda info -e
#或
conda info --envs
 
#检查更新当前conda
conda update conda
 
#更新anaconda
conda update anaconda
 
#更新所有库
conda update --all
 
#更新python
conda update python

jupyter notebook的安装与使用

启动 Jupyter
直接在指定文件夹下的打开终端,输入命令:

jupyter notebook

即可启动 Jupyter notebook,前提是已经安装了 Jupyter,推荐直接安装 Anaconda,这样就连 Jupyter 一起也安装了,如果不想安装 Anaconda,那么可以在已经安装过 python 的前提下先安装 Jupter,安装命令是:

pip install jupyter

版权声明:本文为CSDN博主「何以少团栾。」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_31347869/article/details/88049014

其它问题

PackagesNotFoundError: The following packages are not available from current channels的解决办法

[https://blog.csdn.net/weixin_45552562/article/details/109668589](https://blog.csdn.net/weixin_45552562/article/details/109668589)
你需要去 https://anaconda.org 这个网址,在上方的搜索条上搜索你要安装这个包的其他channel,下边展示一下如何找igraph的其他channel, 如图所示,最后选择其中一个安装命令进行安装即可。

Ubuntu 安装 conda_第1张图片

![在这里插入图片描述](https://img-blog.csdnimg.cn/98b374bd96254324888b6c3578c1ddc1.png)

No module named ‘torch_geometric‘解决办法

https://blog.csdn.net/weixin_47779152/article/details/120570367

torch_cluster-1.6.0-cp38-cp38-linux_x86_64.whl

你可能感兴趣的:(python,软件安装与使用,ubuntu,conda,python)