Anaconda 安装与卸载
Anaconda是一个免费开源的Python和R语言的发行版本,用于计算科学(数据科学、机器学习、大数据处理和预测分析),Anaconda致力于简化软件包管理系统和部署。Anaconda的包使用软件包管理系统Conda进行管理。超过1200万人使用Anaconda发行版本,并且Anaconda拥有超过1400个适用于Windows、Linux和MacOS的数据科学软件包。 -wikipedia
安装
下载
清华大学开源软件镜像站:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
note: Anaconda官网是外国网站,速度非常慢,建议去清华大学开源软件镜像站下载
安装(Linux)
授权并执行
# 给下载的sh文件执行权限
chmod a+x Anaconda3-2021.05-Linux-x86_64.sh
# 执行安装文件
./Anaconda3-2021.05-Linux-x86_64.sh
安装输出日志
Welcome to Anaconda3 2021.05 In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>> 按回车键(ENTER)继续
===================================
End User License Agreement - Anaconda Individual Edition
=================================== Copyright 2015-2021, Anaconda, Inc. All rights reserved under the 3-clause BSD License:
...
... license日志
... The following packages listed on https://www.anaconda.com/cryptography are inclu
ded in the repository accessible through Anaconda Individual Edition that relate
to cryptography. Last updated April 5, 2021 Do you accept the license terms? [yes|no]
[no] >>> yes (yes接受继续,no拒绝退出安装) Anaconda3 will now be installed into this location:
/home/noname/anaconda3 - Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below [/home/noname/anaconda3] >>> /usr/envs/anaconda3 (此处可自定义安装路径,不填则为默认路径,一般在用户根目录)
PREFIX=/usr/envs/anaconda3
Unpacking payload ...
Collecting package metadata (current_repodata.json): done
Solving environment: done ## Package Plan ## environment location: /usr/envs/anaconda3 added / updated specs:
- _ipyw_jlab_nb_ext_conf==0.1.0=py38_0
- _libgcc_mutex==0.1=main
- alabaster==0.7.12=pyhd3eb1b0_0
...
... anaconda基础环境包安装日志
... Preparing transaction: done
Executing transaction: done
installation finished.
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>> yes (是否初始化)
no change /usr/envs/anaconda3/condabin/conda
no change /usr/envs/anaconda3/bin/conda
no change /usr/envs/anaconda3/bin/conda-env
no change /usr/envs/anaconda3/bin/activate
no change /usr/envs/anaconda3/bin/deactivate
no change /usr/envs/anaconda3/etc/profile.d/conda.sh
no change /usr/envs/anaconda3/etc/fish/conf.d/conda.fish
no change /usr/envs/anaconda3/shell/condabin/Conda.psm1
no change /usr/envs/anaconda3/shell/condabin/conda-hook.ps1
no change /usr/envs/anaconda3/lib/python3.8/site-packages/xontrib/conda.xsh
no change /usr/envs/anaconda3/etc/profile.d/conda.csh
modified /home/noname/.bashrc ==> For changes to take effect, close and re-open your current shell. <== If you'd prefer that conda's base environment not be activated on startup,
set the auto_activate_base parameter to false: conda config --set auto_activate_base false Thank you for installing Anaconda3! =========================================================================== Working with Python and Jupyter notebooks is a breeze with PyCharm Pro,
designed to be used with Anaconda. Download now and have the best data
tools at your fingertips. PyCharm Pro for Anaconda is available at: https://www.anaconda.com/pycharm
配置
初始化[1] Anaconda(安装时初始化了则跳过)
# 如果如果anaconda安装初始化时,选择的no,那现在应该还用不了conda命令
# 执行 source $ANACONDA_HOME/bin/activate, 如:
source /usr/envs/anaconda3/bin/activate
# 初始化
conda init
关闭启动时激活Conda基础环境(可选)
# 如果您不希望在启动时激活Conda基础环境,将AUTO_ACTIVATE_BASE参数设置为FALSE:
conda config --set auto_activate_base false
Anaconda 镜像配置
点击前往Anaconda 镜像配置
卸载
删除Anaconda 文件夹
# rm -rf $ANACONDA_HOME,如:
rm -rf /usr/envs/anaconda3
删除Anaconda 配置
# 打开配置文件
vim ~/.bashrc # 删除下面这段配置 # >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/usr/envs/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/usr/envs/anaconda3/etc/profile.d/conda.sh" ]; then
. "/usr/envs/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/usr/envs/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
更新配置文件
source ~/.bashrc
或者 source /etc/profile
Reference
Anaconda 安装与卸载的更多相关文章
- Anaconda安装和卸载+虚拟环境Tensorflow安装以及末尾问题大全(附Anaconda安装包),这一篇就够了!!!
前言 实话说,在自己亲手捣鼓了一下午加一晚上后,本人深深地感受到了对于"Anaconda安装+虚拟环境Tensorflow安装"里面的坑点之多,再加上目前一些博主的资料有点久远,尤 ...
- Python:Anaconda安装虚拟环境到指定路径
1 曾经的困扰 有段时间,想使用基于不同python版本的anaconda,就直接从官网下载了两个不同的anaconda版本进行安装.刚开始的时候,还觉得也没啥问题.用了一小段时间,在安装其他的第三方 ...
- Anaconda 安装、使用
一.下载: 清华镜像:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 二.安装: 默认就行,安装路径最好换一下 三.配置环境变量: 控制面 ...
- Anaconda 安装和配置
Anaconda 安装和配置 1. Anaconda 安装 Anaconda说明及安装过程:Anaconda详细安装使用教程 2. Anaconda和Pip源修改 Anaconda源修改:打开Anac ...
- Anaconda 安装教程(Win10环境) Tensorflow安装
序 Python易用,但用好却不易,其中比较头疼的就是包管理和Python不同版本的问题,特别是当你使用Windows的时候.为了解决这些问题,有不少发行版的Python,比如WinPython.An ...
- python第三方库安装和卸载
库的安装与卸载 pip install requests pip uninstall requests 查看安装好的库 pip list 第三方库的各种安装方式如下: 一.包管理器 Python有 ...
- Anaconda安装第三方库与pip和conda 添加国内源
Anaconda安装第三方库 PIP使用命令 Anaconda命令 pip和conda 添加国内源 1:PIP相关命令 卸载 pip uninstall XXX 1.升级pip python -m p ...
- MySQL入门——在Linux下安装和卸载MariaDB
MySQL入门——在Linux下安装和卸载MariaDB 摘要:本文主要学习了如何在Linux系统中安装和卸载MariaDB数据库. 查看有没有安装过MariaDB 使用命令查看有没有安装过: [ro ...
- 【环境搭建与软件安装】windows系统基于Anaconda安装tensorflow-gpu
https://github.com/tensorflow/tensorflow/issues/21832 原来是tensorflow-gpu-1.10.0,准备改为1.9.0试试,同样的问题: 应该 ...
随机推荐
- 【UE4 设计模式】单例模式 Singleton Pattern
概述 描述 保证一个类只有一个实例 提供一个访问该实例的全局节点,可以视为一个全局变量 仅在首次请求单例对象时对其进行初始化. 套路 将默认构造函数设为私有, 防止其他对象使用单例类的 new运算符. ...
- OO_JAVA_表达式求导
OO_JAVA_表达式求导_第一弹 ---------------------------------------------------表达式提取部分 词法分析 首先,每一个表达式内部都存在不可 ...
- jquery 实现 <imput>标签 密码框显示/隐藏密码功能
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 < ...
- 🏆【JVM深层系列】「云原生时代的Java虚拟机」针对于GraalVM的技术知识脉络的重塑和探究
GraalVM 背景 新.旧编程语言的兴起躁动,说明必然有其需求动力所在,譬如互联网之于JavaScript.人工智能之于Python,微服务风潮之于Golang等等.大家都清楚不太可能有哪门语言能在 ...
- PyCharm Django Python 开发环境配置 详细教程
PyCharm Django Python 开发环境配置 详细教程 1. Python 下载及安装 (1)根据需要的版本去 Python 官网(https://www.python.org/downl ...
- mybatis之参数传递的方式 | mybatis
1.单个参数(基本类/包装类+String) 这种情况MyBatis可直接使用这个参数,不需要经过任何处理. 一个参数情况下#{}中内容随便写 public Employee getEmployeeB ...
- redis客户端修改了key-value对之后有时会报MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist o...错误,不能持久化
解决方案,连接redis客户端 redis目录下:redis-cli -h 127.0.0.1 -p 6379-h后为redis服务器ip,-p后为端口号进入redis-client之后输入命令 co ...
- [第二章]c++学习笔记6(复制构造函数在各个编译器中的表现)
visual studio结果 dev c++结果 两者的输出有所不同 原因:dev c++编译对这个过程进行了优化,因为直接return对象给a,为节省时间所以不生成临时对象,所以结果为10. 注: ...
- c++学习笔记7(面向对象的程序设计)
面向对象的程序=类+类+....+类 设计程序的过程,就是设计类的过程 实例 对象的内存分配 对象间的运算 使用类的成员变量和成员函数
- Mac下Shell脚本使用学习笔记(一)
参考文献 Shell 教程 MAC常用终端命令行 Mac下Shell脚本使用 1.使用终端创建test.sh: (1)进入指定文件夹路径(命令示例:cd Desktop/面向对象程序设计): (2)创 ...