source.howをダウンロードしてコンパイルし、rmagickgemをインストールするために手動でインストールしたImageMagickを正しくアンインストールしてimagemagickをインストールしました。「アンインストールする」のようなものはありますか?
2691 次
2 に答える
4
標準的な手順はありません。
uninstall
によってインストールされたファイルを削除するために実行できるルールがmakefile によって提供される場合がありますinstall
。
Imagemagick 自体をアンインストールするツールが提供されていない場合は、インストールされたファイルを削除して手動で削除する必要があります。
于 2011-01-24T11:17:09.230 に答える
0
Imagemagick provides standard uninstall procedure if you have compiled it from source.
1. cd source_dir
2. make uninstall
From docs:
make uninstall
Remove all files from the system which are (or would be) installed by sudo make install using the current configuration. Note that this target is imperfect for PerlMagick since Perl no longer supports an uninstall target.
于 2012-07-24T07:14:18.333 に答える