Preguntas etiquetadas con pip

Preguntas sobre el uso de pip, un instalador de paquetes para Python.

3
apt-get install vs pip install
Estoy un poco confundido acerca de los casos en que los comandos anteriores deben usarse al descargar paquetes de Python. Intenté descargar un paquete llamado pyudev de acuerdo con una respuesta a esta pregunta . Ejecuté este comando: sudo pip install python-pyudev pero recibió el siguiente mensaje: Downloading/unpacking python-pyudev Could …

3
Instalar pip3 (para python3) en ubuntu 16.04 LTS usando un proxy
He intentado ingresar: sudo apt install python3-pip El error que obtengo es: $ sudo apt install python3-pip Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: libexpat1-dev libpython3-dev libpython3.5-dev python-pip-whl python3-dev python3-wheel python3.5-dev The following NEW packages will be installed: libexpat1-dev …


7
Pip no funciona: ImportError: ningún módulo llamado 'pip._internal'
Correr pipo pip3resultados con: Traceback (most recent call last): File "/home/myuser/.local/bin/pip", line 7, in <module> from pip._internal import main ImportError: No module named 'pip._internal' Tuve problemas con esto y desinstalé pip3, pero cuando intento instalarlo nuevamente usando sudo apt-get -y install python3-pip se instala, pero luego ejecutando pip o pip3 …
63 python  pip 

3
"Error fatal: openssl / opensslv.h: no existe tal archivo o directorio" compilando mitmproxy
Estoy tratando de instalar el paquete mitmproxy a través de pip como este: $ sudo pip install mitmproxy Termina con el siguiente mensaje de error: x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/python2.7 -c build/temp.linux-x86_64-2.7/_openssl.c -o build/temp.linux-x86_64-2.7/build/temp.linux-x86_64-2.7/_openssl.o build/temp.linux-x86_64-2.7/_openssl.c:391:30: fatal error: openssl/opensslv.h: No …
52 compiling  gcc  pip 

6
¿Cómo actualizar pip a la última?
Instalé pip usando get-pip.pydespués de eso pip freezearroja el siguiente error Exception: Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main status = self.run(options, args) File "/usr/lib/python2.7/dist-packages/pip/commands/freeze.py", line 74, in run req = pip.FrozenRequirement.from_dist(dist, dependency_links, find_tags=find_tags) File "/usr/lib/python2.7/dist-packages/pip/__init__.py", line 299, in from_dist assert len(specs) == 1 and specs[0][0] …
51 upgrade  python  pip 

3
Error al instalar scrapy en virtualenv usando pip
pip install scrapy Downloading/unpacking scrapy Downloading Scrapy-0.24.2-py2-none-any.whl (502kB): 502kB downloaded Downloading/unpacking pyOpenSSL (from scrapy) Downloading pyOpenSSL-0.14.tar.gz (128kB): 128kB downloaded Running setup.py (path:/home/elie/.virtualenvs/stat/build/pyOpenSSL/setup.py) egg_info for package pyOpenSSL warning: no previously-included files matching '*.pyc' found anywhere in distribution no previously-included directories found matching 'doc/_build' Requirement already satisfied (use --upgrade to upgrade): six>=1.5.2 …



2
sudo apt-get install python-pip falla
sudo apt-get install python-pip Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package python-pip ¿Cómo instalar python-pip en ubuntu: 14.04?
34 14.04  python  pip 

7
Cuando se usa sudo para ejecutar pip "pip: comando no encontrado" pero está instalado
sudo easy_install pip Searching for pip Best match: pip 1.4.1 Processing pip-1.4.1-py2.7.egg pip 1.4.1 is already the active version in easy-install.pth Installing pip script to /home/nyzlfc/.local/bin Installing pip-2.7 script to /home/nyzlfc/.local/bin Using /home/nyzlfc/.local/lib/python2.7/site-packages/pip-1.4.1-py2.7.egg Processing dependencies for pip Finished processing dependencies for pip Y luego cuando corro sudo pip install -U …

4
¿Cómo instalar pydot y graphviz?
Estoy ejecutando un código que necesita pydot y graphviz. Estoy usando python 3.5 y ubuntu 16.04 LTS 64 bit. File "/usr/local/lib/python3.5/dist-packages/keras/utils/vis_utils.py", line 17, in _check_pydot raise ImportError('Failed to import pydot. You must install pydot' ImportError: Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work. Busqué …
24 16.04  python3  pip 


10
Ejecutando Pip3 ImportError: no se puede importar el nombre 'main'
Quiero instalar Scipy (ya tengo instalado Numpy). Tengo Python 3.5.1-3 instalado con OS e IDLE3 (3.5.2). Cuando golpeo en la terminal sudo pip3 install scipy Se imprime Traceback (most recent call last): File "/usr/bin/pip3", line 9, in <module> from pip import main ImportError: cannot import name 'main' Ya he intentado …
21 python3  pip 

4
¿Cómo instalar la última versión de pip cuando ya instalé la proporcionada por Ubuntu?
En Ubuntu 16.04 cuando haces: pip install --upgrade pip usted obtiene: Collecting pip Using cached pip-8.1.2-py2.py3-none-any.whl Installing collected packages: pip Successfully installed pip-8.1.1 You are using pip version 8.1.1, however version 8.1.2 is available. You should consider upgrading via the 'pip install --upgrade pip' command. Lo suficientemente justo. Ahora intenta …

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.