Skip to main content

清除 Linux 系統安裝軟體時殘留的設定

在 ubuntu server 安裝 gallery-dl 時,由於之前有安裝過導致錯誤的設定殘留,在網路上查老半天都找不到要怎麼清除,最後還是請出 GPT 大神,基礎操作類他還是很擅長的。這裡也給其他網路上的資訊 https://ivonblog.com/posts/linux-uninstall-application/。

Claude 3.5 sonnet 的回答

好的,讓我們徹底清理所有 gallery-dl 的安裝和設定。以下是完整的步驟:

移除 snap 版本:

sudo snap remove gallery-dl

移除 pip 安裝的版本:

pip uninstall gallery-dl
pip3 uninstall gallery-dl

移除用戶級安裝:

rm -rf ~/.local/lib/python*/site-packages/gallery_dl*
rm -f ~/.local/bin/gallery-dl

刪除配置文件:

rm -rf ~/.config/gallery-dl
rm -f ~/.gallery-dl.conf

檢查並刪除任何殘留的 gallery-dl 目錄:

find ~ -name "*gallery-dl*" -type d

如果找到任何目錄,使用 rm -rf 刪除它們。 清理 pip 快取: pip cache purge

檢查是否有系統級安裝:

sudo find /usr/local -name "*gallery-dl*"

如果找到,使用 sudo rm -rf 刪除。 更新 shell 配置: 編輯 ~/.bashrc、~/.bash_profile~/.profile,移除任何與 gallery-dl 相關的 PATH 或環境變量設置。 重新加載 shell 配置:

source ~/.bashrc

(或重新登錄你的 shell) 清理任何可能的 sudo 路徑設置:

sudo visudo

檢查並移除任何與 gallery-dl 相關的路徑。

完成這些步驟後,你的系統應該已經完全清除了 gallery-dl 的所有痕跡。之後,你可以重新安裝乾淨的版本,如果需要的話。