Domande taggate «pip»

Domande sull'uso di pip, un installer di pacchetti per Python.

3
apt-get install vs pip install
Sono un po 'confuso riguardo ai casi in cui i comandi sopra devono essere usati quando si scaricano pacchetti Python. Stavo cercando di scaricare un pacchetto chiamato pyudev in conformità con una risposta a questa domanda . Ho eseguito questo comando: sudo pip install python-pyudev ma ho ricevuto il seguente …

3
installare pip3 (per python3) su Ubuntu 16.04 LTS usando un proxy
Ho provato a inserire: sudo apt install python3-pip L'errore che ottengo è: $ 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 non funziona: ImportError: nessun modulo denominato 'pip._internal'
Esecuzione pipo pip3risultati 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' Ho avuto problemi con questo e ho disinstallato pip3, ma quando provo a installarlo di nuovo usando sudo apt-get -y install python3-pip si installa, ma poi …
63 python  pip 

3
"Errore fatale: openssl / opensslv.h: nessun file o directory simile" compilando mitmproxy
Sto cercando di installare il pacchetto mitmproxy tramite pip in questo modo: $ sudo pip install mitmproxy Termina con il seguente messaggio di errore: 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 such …
52 compiling  gcc  pip 

6
Come aggiornare pip alla versione più recente?
Ho installato pip usando get-pip.pydopo che pip freezegenera sotto l'errore 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
Errore durante l'installazione di scrapy in virtualenv mediante 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 …




7
Quando si utilizza sudo per eseguire pip "pip: comando non trovato" ma è installato
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 E poi quando corro sudo pip install -U …

4
Come installare pydot e graphviz?
Sto eseguendo un codice che richiede pydot e graphviz. Sto usando Python 3.5 e Ubuntu 16.04 LTS a 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. …
24 16.04  python3  pip 


10
Esecuzione di Pip3 ImportError: impossibile importare il nome 'main'
Voglio installare Scipy (ho già installato Numpy). Ho Python 3.5.1-3 installato con OS e IDLE3 (3.5.2). Quando ho colpito nel terminale sudo pip3 install scipy Si stampa Traceback (most recent call last): File "/usr/bin/pip3", line 9, in <module> from pip import main ImportError: cannot import name 'main' Ho già provato …
21 python3  pip 

4
Come installare l'ultima versione di pip quando ho già installato quello fornito da Ubuntu?
In Ubuntu 16.04 quando lo fai: pip install --upgrade pip ottieni: 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. Giusto. Adesso prova pip install …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.