Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. imran@fc07decbd50c:/tpcc/tpcc-course-2020$ bash install_client.sh
  2. /usr/bin/dirname
  3. /usr/bin/realpath
  4. Python version: 3.6.9
  5. usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
  6. [--upgrade] [--without-pip] [--prompt PROMPT]
  7. ENV_DIR [ENV_DIR ...]
  8.  
  9. Creates virtual Python environments in one or more target directories.
  10.  
  11. positional arguments:
  12. ENV_DIR A directory to create the environment in.
  13.  
  14. optional arguments:
  15. -h, --help show this help message and exit
  16. --system-site-packages
  17. Give the virtual environment access to the system
  18. site-packages dir.
  19. --symlinks Try to use symlinks rather than copies, when symlinks
  20. are not the default for the platform.
  21. --copies Try to use copies rather than symlinks, even when
  22. symlinks are the default for the platform.
  23. --clear Delete the contents of the environment directory if it
  24. already exists, before environment creation.
  25. --upgrade Upgrade the environment directory to use this version
  26. of Python, assuming Python has been upgraded in-place.
  27. --without-pip Skips installing or upgrading pip in the virtual
  28. environment (pip is bootstrapped by default)
  29. --prompt PROMPT Provides an alternative prompt prefix for this
  30. environment.
  31.  
  32. Once an environment has been created, you may wish to activate it, e.g. by
  33. sourcing an activate script in its bin directory.
  34. Creating virtual environment...
  35. Running command ['python3', '-m', 'venv', 'venv']
  36. Upgrading pip...
  37. Running command ['/tpcc/tpcc-course-2020/client/venv/bin/pip', 'install', '--upgrade', 'pip']
  38. Traceback (most recent call last):
  39. File "client/install.py", line 228, in <module>
  40. main()
  41. File "client/install.py", line 221, in main
  42. install(installer, args)
  43. File "client/install.py", line 205, in install
  44. installer.install(args.alias)
  45. File "client/install.py", line 170, in install
  46. self._create_venv()
  47. File "client/install.py", line 142, in _create_venv
  48. self._run([venv_pip, 'install', '--upgrade', 'pip'])
  49. File "client/install.py", line 60, in _run
  50. subprocess.check_call(command, **kwargs)
  51. File "/usr/lib/python3.6/subprocess.py", line 306, in check_call
  52. retcode = call(*popenargs, **kwargs)
  53. File "/usr/lib/python3.6/subprocess.py", line 287, in call
  54. with Popen(*popenargs, **kwargs) as p:
  55. File "/usr/lib/python3.6/subprocess.py", line 729, in __init__
  56. restore_signals, start_new_session)
  57. File "/usr/lib/python3.6/subprocess.py", line 1364, in _execute_child
  58. raise child_exception_type(errno_num, err_msg, err_filename)
  59. FileNotFoundError: [Errno 2] No such file or directory: '/tpcc/tpcc-course-2020/client/venv/bin/pip': '/tpcc/tpcc-course-2020/client/venv/bin/pip'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement