python3.5-pip をインストールできませんでした

python3.5-pip をインストールできませんでした

私はpython3.5でpipをインストールしようとしていますが、Ubuntu 16.04では実行されません。コマンドを実行するsudo apt-get install python3.5-pipと、次のような結果が得られます。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package python3.5-pip
E: Couldn't find any package by glob 'python3.5-pip'
E: Couldn't find any package by regex 'python3.5-pip'

答え1

以下のスレッドの回答によると、pipPython 3.4以降を使用しているため、すでにインストールされているはずです。

https://stackoverflow.com/questions/6587507/python3 で pip をインストールする方法

インストールされていない場合は、以下のコマンドを実行してください。

sudo apt-get install python3-pip

関連情報