web-dev-qa-db-ja.com

Ubuntu 14.04にpython-setuptoolsを適切にインストールする方法

ivan@MS-7640:~$ python -V
Python 2.7.10


Sudo apt-get install python-setuptools
[Sudo] password for ivan: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-setuptools is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.


しかし、このエラーメッセージが表示されます。

Checking python module: setuptools ... 
 setuptools  is not installed, Please install it first.

On Debian/Ubntu: apt-get install python-setuptools
On CentOS/RHEL: yum install python-distribute


Error occured during setup. 
Please fix possible problems and run the script again.

修正方法

3
Ivan

次のコマンドを実行します:

Sudo pip install -U setuptools

このコマンドは、必要な依存関係をインストールします。

3
Wellington1993