Linux系统分为两种:
- RedHat系列:Redhat、Centos、Fedora等
- Debian系列:Debian、Ubuntu等
RedHat系列的包管理工具是yum
Debian系列的包管理工具是apt-get
问题:
python
bash: vim: command not found
解决步骤:
- Debian系列
python
1.第一步
apt-get update
2.第二步
apt-get install -y vim
- RedHat系列
python
1.第一步
yum update
2.第二步
yum install -y vim