Last active
April 25, 2018 13:11
-
-
Save kitten77/5440dafcbdebc38c40dbb1bba987ec94 to your computer and use it in GitHub Desktop.
python venv error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(venv) muad@podde:~/workbench/THcrm$ pip freeze | |
Traceback (most recent call last): | |
File "/usr/bin/pip", line 9, in <module> | |
from pip import main | |
ImportError: cannot import name main | |
(venv) muad@podde:~/workbench/THcrm$ pip3 freeze | |
Brlapi==0.6.5 | |
certifi==2018.4.16 | |
chardet==3.0.4 | |
coverage==4.5.1 | |
coveralls==1.3.0 | |
cryptography==1.7.1 | |
cupshelpers==1.0 | |
decorator==4.2.1 | |
dj-database-url==0.5.0 | |
Django==2.0.3 | |
django-appconf==1.0.2 | |
django-compressor==2.2 | |
docopt==0.6.2 | |
gunicorn==19.7.1 | |
httplib2==0.9.2 | |
idna==2.6 | |
inflect==0.2.5 | |
ipython==6.2.1 | |
ipython-genutils==0.2.0 | |
irc==16.2 | |
irc3==1.0.2 | |
jaraco.classes==1.4.3 | |
jaraco.collections==1.5.2 | |
jaraco.functools==1.17 | |
jaraco.itertools==2.1 | |
jaraco.logging==1.5.1 | |
jaraco.stream==1.1.2 | |
jaraco.text==1.9.2 | |
jedi==0.11.1 | |
keyring==10.1 | |
keyrings.alt==1.3 | |
libsass==0.14.2 | |
louis==3.0.0 | |
Mako==1.0.6 | |
MarkupSafe==0.23 | |
more-itertools==4.1.0 | |
parso==0.1.1 | |
pexpect==4.3.1 | |
pickleshare==0.7.4 | |
pigpio==1.39 | |
Pillow==4.0.0 | |
praw==5.3.0 | |
prawcore==0.13.0 | |
prompt-toolkit==1.0.15 | |
psycopg2==2.7.4 | |
ptyprocess==0.5.2 | |
pyasn1==0.1.9 | |
pycrypto==2.6.1 | |
pycups==1.9.73 | |
pycurl==7.43.0 | |
pyenchant==2.0.0 | |
pygeoip==0.3.2 | |
Pygments==2.2.0 | |
pygobject==3.22.0 | |
pysmbc==1.0.15.6 | |
python-apt==1.4.0b3 | |
python-dateutil==2.7.2 | |
python-debian==0.1.30 | |
python-debianbts==2.6.1 | |
pytz==2018.4 | |
pyxdg==0.25 | |
rcssmin==1.0.6 | |
redis==2.10.6 | |
reportbug==7.1.7 | |
reportlab==3.3.0 | |
requests==2.18.4 | |
rjsmin==1.0.12 | |
SecretStorage==2.3.1 | |
selenium==3.11.0 | |
simplegeneric==0.8.1 | |
six==1.11.0 | |
sopel==6.5.1 | |
tempora==1.10 | |
traitlets==4.3.2 | |
unattended-upgrades==0.1 | |
update-checker==0.16 | |
urllib3==1.22 | |
venusian==1.1.0 | |
virtualenv==15.1.0 | |
wcwidth==0.1.7 | |
whitenoise==3.3.1 | |
xmltodict==0.11.0 | |
(venv) muad@podde:~/workbench/THcrm$ python | |
Python 3.5.3 (default, Jan 19 2017, 14:11:04) | |
[GCC 6.3.0 20170118] on linux | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import selenium | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
ImportError: No module named 'selenium' | |
>>> | |
(venv) muad@podde:~/workbench/THcrm$ python | |
Python 3.5.3 (default, Jan 19 2017, 14:11:04) | |
[GCC 6.3.0 20170118] on linux | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import django | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
ImportError: No module named 'django' | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment