Ubuntu16.04にPipをインストールする方法を紹介します 。 Pipは、Python Package Index(PyPI)にあるソフトウェアパッケージをインストールおよび管理するために使用されるPythonパッケージ管理システムです。これらのソフトウェアパッケージはPythonで記述されており、通常、Pythonアプリケーションを拡張または拡張するために使用されます。 Pipは広く使用されているPythonパッケージマネージャーであり、その使いやすさとパフォーマンスで知られています。 Pipには、パッケージの完全なリストと対応するバージョン番号を管理する機能もあり、「要件」ファイルを通じて可能になります。 Ubuntu16.04へのPipのインストール これは簡単な作業です。このチュートリアルの手順に注意深く従うだけで、10分以内にPipがUbuntu16.04にインストールされます。
1。 SSHに接続し、システムソフトウェアを更新します
まず、SSH経由でサーバーに接続し、すべてのシステムソフトウェアが最新であることを確認します。次のコマンドを実行してパッケージリストを更新し、すべてのシステムソフトウェアを利用可能な最新バージョンにアップグレードします。
sudo apt-get update && sudo apt-get -y upgrade
2。 Ubuntu16.04へのPipのインストール
アップグレードが完了したら、次に進んでPipをUbuntuVPSにインストールできます。 Pipのインストールは非常に簡単で、「apt-get」を使用して実行されます。実行する必要があるのは、次のコマンドを実行することだけです。
sudo apt-get install python-pip
3。 UbuntuでのPipのインストールを確認する
aptパッケージマネージャーは、ソフトウェアが最適に動作するために必要なPipとすべての依存関係をインストールします。インストールが完了したら、次のコマンドを使用して、インストールが成功したことを確認できます。
pip -V
次のような出力が表示されます。
# pip -V pip 8.1.1 from /usr/lib/python2.7/dist-packages (python 2.7)
これは、PipがUbuntuサーバーに正常にインストールされ、使用できる状態になっていることを意味します。
4。 Ubuntuの基本的なPipコマンド
Pipをインストールしたので、Pipの使用を開始するのに役立ついくつかのコマンドを以下に示します。
5。 UbuntuでPipを含むパッケージを検索する
パッケージを検索するには、次のコマンドを使用できます。
pip search package_name
6。 UbuntuにPipを使用してパッケージをインストールする
パッケージをインストールするには、次のコマンドを使用できます。
pip install package_name
7。 UbuntuでPipを使用してパッケージをアンインストールする
パッケージをアンインストールする場合は、次のコマンドを使用できます。
pip uninstall package_name
その他のPipオプションと使用例については、--help
を使用できます。 フラグ:
# pip --help Usage: pip <command> [options] Commands: install Install packages. download Download packages. uninstall Uninstall packages. freeze Output installed packages in requirements format. list List installed packages. show Show information about installed packages. search Search PyPI for packages. wheel Build wheels from your requirements. hash Compute hashes of package archives. completion A helper command used for command completion help Show help for commands. General Options: -h, --help Show help. --isolated Run pip in an isolated mode, ignoring environment variables and user configuration. -v, --verbose Give more output. Option is additive, and can be used up to 3 times. -V, --version Show version and exit. -q, --quiet Give less output. --log Path to a verbose appending log. --proxy Specify a proxy in the form [user:passwd@]proxy.server:port. --retries Maximum number of retries each connection should attempt (default 5 times). --timeout Set the socket timeout (default 15 seconds). --exists-action Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup. --trusted-host Mark this host as trusted, even though it does not have valid or any HTTPS. --cert Path to alternate CA bundle. --client-cert Path to SSL client certificate, a single file containing the private key and the certificate in PEM format. ...
CentOS7およびDebian9ベースの仮想サーバーにpipをインストールする場合は、以下のチュートリアルに従ってください。
- Debian9にpipをインストールする方法
- CentOS7にpipをインストールする方法
- pipアンインストール–pipでインストールされたパッケージをアンインストールします
このチュートリアルが、UbuntuにPipを正常にインストールするのに役立つことを願っています。 、およびその基本的な機能のいくつかの使用方法を示します。
最適化されたPythonVPSがあれば、Ubuntu16.04にPipをインストールするのは簡単な作業です。エキスパートのLinux管理者にUbuntu16.04にPipをインストールするように依頼してください。数分以内に提供されます。 Ubuntu 18.04にpipをインストールする方法、またはUbuntu 20.04にpipをインストールする方法を知りたい場合は、それらのステップバイステップガイドも用意しています。
PS。ソーシャルネットワークのショートカットを使用してPipをUbuntuにインストールする方法については、このブログ投稿を自由に共有してください。代わりに、共有ボタンの下にコメントを残すこともできます。ありがとう。