Anaconda | conda常用命令

简介: Anaconda | conda常用命令

# 查看当前环境下已安装的包

conda list

# 查看某个指定环境的已安装包

conda list -n python36

# 查找package信息

conda search numpy

# 安装package

conda install -n python36 numpy

# 如果不用-n指定环境名称,则被安装在当前活跃环境

# 也可以通过-c指定通过某个channel安装

# 更新package

conda update -n python36 numpy

# 删除package

conda remove -n python36 numpy

# 更新conda,保持conda最新

conda update conda

# 更新anaconda

conda update anaconda

# 更新python

conda update python

# 假设当前环境是python 3.6, conda会将python升级为3.6.x系列的当前最新版本


目录
相关文章
conda 环境安装
conda 环境安装
131 0
|
5月前
|
Linux Python
Centos7安装Python虚拟环境之virtualenv
Centos7安装Python虚拟环境之virtualenv
|
6月前
|
Python
conda常见命令
conda常见命令
131 12
|
5月前
|
人工智能 数据挖掘 Linux
如何安装Anaconda ?
如何安装Anaconda ?
81 0
|
6月前
|
存储 IDE TensorFlow
安装Anaconda
【7月更文挑战第2天】安装Anaconda。
113 1
|
6月前
|
Shell Python
一些常见的 Conda 命令
一些常见的 Conda 命令
|
7月前
|
缓存 开发工具 git
pip常用命令和一些坑
pip常用命令和一些坑
104 0
|
8月前
|
Linux iOS开发 MacOS
conda 安装, 配置以及使用
conda 安装, 配置以及使用
528 1
|
8月前
|
Ubuntu Shell Linux
ubuntu安装conda
ubuntu安装conda
208 0
|
8月前
|
Shell Linux iOS开发
安装Anaconda或Miniconda
安装Anaconda或Miniconda
602 1