Ubuntu から python をアンインストールする方法
On 10月 20, 2021 by adminUninstall python
Ubuntu から python パッケージだけをアンインストールするにはターミナルで実行します:
sudo apt-get remove python
Uninstall python and it’s dependent packages
Ubuntu で必要ない python パッケージとその他の依存パッケージを削除するには、次のようにします:
Uubuntu Ubuntu python Ubuntu
Ubuntu
Ubuntu から python パッケージのみを削除するには、次のようにします。
sudo apt-get autoremove python
Purging python
Ubuntuからpythonの設定ファイルやデータファイルを削除したい場合、これは動作します:
sudo apt-get purge python
Ubuntu から python およびその依存ファイルの設定やデータファイルを削除するには、以下を実行してください。
sudo apt-get autoremove --purge python
python package information
python
python
interactive high-python
interactive high-python
python>
www.python.org/
More information about apt-get remove
Advanced Package Tool, or APT, is a free software user interface that works with core libraries that handle of software installation and removal on Debian, Ubuntu and the other Linux distributions. APT は、プリコンパイルされたファイルから、あるいはソースコードをコンパイルすることによって、ソフトウェアパッケージの検索、設定、インストールを自動化することにより、Unix 系コンピュータシステムでのソフトウェア管理プロセスを簡素化します。
apt-get はパッケージを扱うためのコマンドラインツールで、APT ライブラリを使用する他のツールに対するユーザーの「バックエンド」と考えることができます。
apt-get remove は、パッケージがインストールされる代わりに削除されることを除けば、install と同じです。 パッケージを削除しても、その設定ファイルはシステム上に残ることに注意してください。 パッケージ名にプラス記号が (間にスペースを入れずに) 付加されている場合、識別されたパッケージは削除される代わりにインストールされます。
See Also
Ubuntu で python パッケージをインストールする方法
コメントを残す