Ningún módulo llamado setuptools


98

Quiero instalar el archivo de instalación de twilio. Cuando lo instalo a través del comando dado, me da un error:

Ningún módulo llamado setuptools.

¿Podría decirme qué debo hacer?

estoy usando python 2.7

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Python27>python D:\test\twilio-twilio-python-26f6707\setup.py install
Traceback (most recent call last):
  File "D:\test\twilio-twilio-python-26f6707\setup.py", line 2, in <module>
    from setuptools import setup, find_packages
ImportError: No module named setuptools

1
... pero el título se puede buscar fácilmente en Google ... y mi respuesta favorita es actualmente esta
Wolf

3
Estoy votando por reabrir ya que tengo este problema en Ubuntu 14.04 y no se debe a un conflicto x86 / x64 del instalador. En resumen, simplemente necesitaba instalar pip -sudo apt-get install python-pip
Eric

Para cualquier otra persona que tuviera el mismo problema que yo tuve: tuve este problema al intentar ejecutar el script setup.py para el agente de walinux de Azure.
Alex Egli

Respuestas:


98

Instale setuptoolsy vuelva a intentarlo.

intente comando:

sudo apt-get install -y python-setuptools

4
Iba a rechazarlo por no proporcionar el comando para instalar herramientas de configuración, pero realmente necesita ir a esa URL para ver cómo instalarlo en su sistema específico.
robar

25
Debian / ubuntu:apt-get install -y python-setuptools
Daniele Vrut

1
Este problema surgió al optimizar un archivo de compilación de apt install --no-install-recommends ...
Docker

46

Para los usuarios de ubuntu, este error puede surgir porque setuptool no está instalado en todo el sistema. Simplemente instale setuptool usando el comando:

sudo apt-get install -y python-setuptools

Para python3:

sudo apt-get install -y python3-setuptools

Después de eso, instale su paquete nuevamente normalmente, usando

sudo python setup.py install

Eso es todo.


19
Para Python 3, use sudo apt-get install -y python3-setuptools.
CGFoX

Sigo recibiendo "ImportError: Ningún módulo llamado setuptools". También abrí un nuevo shell de comandos.
Geoffrey Anderson

16

Para Python, ejecute este comando

apt-get install -y python-setuptools

Para Python 3.

apt-get install -y python3-setuptools

14

La herramienta recomendada por PyPA para instalar y administrar paquetes de Python es pip. pipse incluye con Python 3.4 ( PEP 453 ), pero para versiones anteriores, aquí se explica cómo instalar (en Windows, usando Python 3.3):

Descarga https://bootstrap.pypa.io/get-pip.py

>c:\Python33\python.exe get-pip.py
Downloading/unpacking pip
Downloading/unpacking setuptools
Installing collected packages: pip, setuptools
Successfully installed pip setuptools
Cleaning up...

Uso de muestra:

>c:\Python33\Scripts\pip.exe install pymysql
Downloading/unpacking pymysql
Installing collected packages: pymysql
Successfully installed pymysql
Cleaning up...

En su caso, sería este (parece que los pipcachés son independientes de la versión de Python):

C:\Python27>python.exe \code\Python\get-pip.py
Requirement already up-to-date: pip in c:\python27\lib\site-packages
Collecting wheel
  Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
    100% |################################| 69kB 255kB/s
Installing collected packages: wheel
Successfully installed wheel-0.29.0

C:\Python27>cd Scripts

C:\Python27\Scripts>pip install twilio
Collecting twilio
  Using cached twilio-5.3.0.tar.gz
Collecting httplib2>=0.7 (from twilio)
  Using cached httplib2-0.9.2.tar.gz
Collecting six (from twilio)
  Using cached six-1.10.0-py2.py3-none-any.whl
Collecting pytz (from twilio)
  Using cached pytz-2015.7-py2.py3-none-any.whl
Building wheels for collected packages: twilio, httplib2
  Running setup.py bdist_wheel for twilio ... done
  Stored in directory: C:\Users\Cees.Timmerman\AppData\Local\pip\Cache\wheels\e0\f2\a7\c57f6d153c440b93bd24c1243123f276dcacbf43cc43b7f906
  Running setup.py bdist_wheel for httplib2 ... done
  Stored in directory: C:\Users\Cees.Timmerman\AppData\Local\pip\Cache\wheels\e1\a3\05\e66aad1380335ee0a823c8f1b9006efa577236a24b3cb1eade
Successfully built twilio httplib2
Installing collected packages: httplib2, six, pytz, twilio
Successfully installed httplib2-0.9.2 pytz-2015.7 six-1.10.0 twilio-5.3.0

0

Para python3 es:

sudo apt-get install -y python3-setuptools
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.