MySQL
1.更新软件包
apt-get update
2.mysql安装
apt-get install mysql-server
3.初始化配置mysql
mysql_secure_installation
第一个选项是问你要不要安装密码插件,就是说安装了之后你必须用安全度很高的密码,不安装的话,可以随意设置任意安全强度的密码
第二项就是设置密码
第三项是否删除匿名用户
第四项是否禁止远程root登录
第五项是否删除测试数据库并访问它
第六项现在是否重新加载特权表
4.启动mysqlfuwu
serivce mysql start
5.登录mysql
mysql -u root -p
Miniconda
https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
第一种方式是通过wget直接下载Miniconda3-latest-Linux-x86_64.sh,然后再进行编译安装
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
第二种方式是先下载到windows中,再cp到ubuntu下
首先在本地下载
然后cp到Ubuntu的/root中
设置环境变量
export PATH=$PATH:/opt/conda/bin
然后执行如下操作
cd /root
sh Miniconda3-latest-Linux-x86_64.sh -b -p /opt/conda
rm -f Miniconda3-latest-Linux-x86_64.sh
ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh
echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc
source /root/.bashrc
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
conda create -n py38 python=3.8 -y
conda activate py38