在ubuntu上安装python开源包管理器anaconda。
这部分的内容其实不多,具体的命令什么的,在上篇windows安装中已经具体介绍过,这里就不在赘述。这里大概介绍下安装的过程。
首先,在ubuntu下,anaconda是没有图形化界面的,只能是命令行操作。
去官方网站下载他的ubuntu的安装包(x86)
访问官方网址下载:
如下图所示:
安装包是一个.sh文件。
在安装的时候一定要注意,要给其赋可执行的权限,不然会报错:“权限不够”
1:开始安装
bash Anaconda3-2018.12-Linux-x86_64.sh
显示以下协议,按回车直到末尾,别按太快,我按太快了,导致安装出错。
vbnet
复制代码
Welcome to Anaconda3 2018.12 In order to continue the installation process, please review the license agreement. Please, press ENTER to continue >>> ... Do you approve the license terms? [yes|no]
输入yes。
javascript
复制代码
Anaconda3 will now be installed into this location: /home/sammy/anaconda3 - Press ENTER to confirm the location - Press CTRL-C to abort the installation - Or specify a different location below [/home/sammy/anaconda3] >>>
直接回车。
css
复制代码
installation finished. Do you wish the installer to prepend the Anaconda3 install location to PATH in your /home/sammy/.bashrc ? [yes|no] [no] >>>
是否添加环境变量,yes。
vbnet
复制代码
Do you wish to proceed with the installation of Microsoft VSCode? [yes|no]
是否安装visual studio code,具体看你自己需求
至此,anaconda安装完成。
最重要的一步来了:
我们需要在ubuntu的命令行窗口激活anaconda才能使用。命令如下:
bash
复制代码
source ~/.bashrc
然后我们打开命令行窗口就可以使用anaconda了。
测试一下:
复制代码
conda –version
运行成功,有好的建议,请在下方输入你的评论。