Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.62 KB | None | 0 0
  1. md@md ~/.MINT17/code/python/test $ virtualenv venv
  2. New python executable in venv/bin/python
  3. Installing setuptools, pip...done.
  4. md@md ~/.MINT17/code/python/test $
  5. md@md ~/.MINT17/code/python/test/venv/bin $ source activate
  6. (venv)md@md ~/.MINT17/code/python/test/venv/bin $ python -V
  7. Python 3.7.0
  8. (venv)md@md ~/.MINT17/code/python/test/venv/bin $ python3 -V
  9. Python 3.4.3
  10. (venv)md@md ~/.MINT17/code/python/test/venv/bin $ pip install aiohttp
  11. Downloading/unpacking aiohttp
  12.   Downloading aiohttp-3.6.2.tar.gz (1.1MB): 1.1MB downloaded
  13.   Running setup.py (path:/home/md/.MINT17/code/python/test/venv/build/aiohttp/setup.py) egg_info for package aiohttp
  14.     Traceback (most recent call last):
  15.       File "<string>", line 17, in <module>
  16.       File "/home/md/.MINT17/code/python/test/venv/build/aiohttp/setup.py", line 23
  17.         print("Install submodules when building from git clone", file=sys.stderr)
  18.                                                                      ^
  19.     SyntaxError: invalid syntax
  20.     Complete output from command python setup.py egg_info:
  21.     Traceback (most recent call last):
  22.  
  23.   File "<string>", line 17, in <module>
  24.  
  25.   File "/home/md/.MINT17/code/python/test/venv/build/aiohttp/setup.py", line 23
  26.  
  27.     print("Install submodules when building from git clone", file=sys.stderr)
  28.  
  29.                                                                  ^
  30.  
  31. SyntaxError: invalid syntax
  32.  
  33. ----------------------------------------
  34. Cleaning up...
  35. Command python setup.py egg_info failed with error code 1 in /home/md/.MINT17/code/python/test/venv/build/aiohttp
  36. Storing debug log for failure in /home/md/.pip/pip.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement