解決docker容器中沒有vim命令

我也有梦想呀發表於2024-10-22

問題現象

# 輸入vim xxx檔案 後控制檯提示
bash: vim: command not found

解決辦法

# 安裝vim
apt-get install -y vim

如果提示下面資訊:

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package vim
更新apt-get
apt-get update

再執行

apt-get install -y vim

相關文章