没有合适的资源?快使用搜索试试~ 我知道了~
一. 准备工作 yum update yum -y install python-devel mysql-devel gcc wget bzip2 python-setuptools 二. 安装anaconda 下载 wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2019.03-Linux-x86_64.sh 执行安装 bash Anaconda3-2019.03-Linux-x86_64.sh 安装过程中会出现的提示 # 1.协议要求 Do you accept the licens
资源推荐
资源详情
资源评论
记一次服务器配置环境全过程记一次服务器配置环境全过程
一一. 准备工作准备工作
yum update
yum -y install python-devel mysql-devel gcc wget bzip2 python-setuptools
二二. 安装安装anaconda
下载下载
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2019.03-Linux-x86_64.sh
执行安装执行安装
bash Anaconda3-2019.03-Linux-x86_64.sh
安装过程中会出现的提示
# 1.协议要求
Do you accept the license terms? [yes|no] >>> yes
# 2.安装位置(默认/root/anaconda3)
[/root/anaconda3] >>> # 此处修改anaconda的安装绝对路径
# 3.自动添加环境变量(推荐no)
>by running conda init? [yes|no] >no
手动修改环境变量手动修改环境变量
vi /etc/profile
# 文件末尾添加如下内容
PATH=/root/anaconda3/bin:$PATH # 路径替换为安装路径
export PATH
#保存退出,刷新系统
source ~/.bashrc
验证安装是否成功验证安装是否成功
source activate # 进入conda环境 出现(base)则说明安装成功
source deactivate # 退出conda环境
三三. 安装安装MySQL
检查检查&删除删除 MariaDB
# 检查
shell> rpm -qa|grep mariadb
mariadb-server-5.5.60-1.el7_5.x86_64
mariadb-5.5.60-1.el7_5.x86_64
mariadb-libs-5.5.60-1.el7_5.x86_64
# 删除
shell> rpm -e --nodeps mariadb-server
shell> rpm -e --nodeps mariadb
shell> rpm -e --nodeps mariadb-libs
检查检查&删除删除 MySQL
# 检查
shell> rpm -qa|grep mysql
# 删除
shell> rpm -e --nodeps xxx
下载下载MySQL源源
官网:https://dev.mysql.com/downloads/repo/yum/
# 查看系统版本
shell> cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
# 选择对应的版本进行下载,例如CentOS 7当前在官网查看最新Yum源的下载地址为:
资源评论
weixin_38623255
- 粉丝: 4
- 资源: 919
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功