Python3 を使用しながら pip を使用して Python2 パッケージをインストールするにはどうすればよいでしょうか?

Python3 を使用しながら pip を使用して Python2 パッケージをインストールするにはどうすればよいでしょうか?

私はParrot OSを使用しています。

Python 2 と Python 3 の両方がインストールされています。

┌─[✗]─[jaysmito@parrot]─[~/]
└──╼ $python --version
Python 3.9.2
┌─[jaysmito@parrot]─[~/]
└──╼ $python2 --version
Python 2.7.18

そしてピップ:

┌─[✗]─[jaysmito@parrot]─[~/]
└──╼ $pip --version
pip 20.3.4 from /usr/lib/python3/dist-packages/pip (python 3.9)
┌─[jaysmito@parrot]─[~/]
└──╼ $pip3 --version
pip 20.3.4 from /usr/lib/python3/dist-packages/pip (python 3.9)

Python2用のパッケージをインストールしたいのですが、Python 3用のパッケージはすでにインストールされています

┌─[jaysmito@parrot]─[~/]
└──╼ $pip install xdg
Requirement already satisfied: xdg in /usr/lib/python3/dist-packages (5)
┌─[jaysmito@parrot]─[~/]
└──╼ $pip3 install xdg
Requirement already satisfied: xdg in /usr/lib/python3/dist-packages (5)
┌─[jaysmito@parrot]─[~/]
└──╼ $python3
Python 3.9.2 (default, Feb 28 2021, 17:03:44) 
[GCC 10.2.1 20210110] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import xdg
>>> exit()
┌─[jaysmito@parrot]─[~/]
└──╼ $python2
Python 2.7.18 (default, Mar  9 2021, 11:09:26) 
[GCC 10.2.1 20210110] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import xdg
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named xdg

この問題をどうすれば解決できますか?

答え1

Python3用のみありますpip。Python2用にインストールするには、パッケージマネージャーまたはURLからのインストールスクリプトを使用してインストールする必要があります。

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python2 get-pip.py

これで、python2 用の pip がインストールされているはずです。

関連情報