Advertisement
Guest User

Untitled

a guest
Dec 18th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. fhe@system:~/codechecker$ export PYTHONPATH=$PYTHONPATH:/usr/lib/python3/dist-packages
  2. fhe@system:~/codechecker$ make venv
  3. # Create a virtual environment which can be used to run the build package.
  4. python3 -m venv venv && \
  5. . venv/bin/activate && \
  6. pip3 install -r /home/fhe/codechecker/analyzer/requirements.txt && \
  7. pip3 install -r /home/fhe/codechecker/web/requirements.txt
  8. Collecting lxml==4.5.0
  9. Using cached lxml-4.5.0-cp38-cp38-manylinux1_x86_64.whl (5.6 MB)
  10. Collecting portalocker==1.7.0
  11. Using cached portalocker-1.7.0-py2.py3-none-any.whl (14 kB)
  12. Processing /home/fhe/.cache/pip/wheels/90/c9/b6/04665702b01dbd9ee92a05e834b627948ed01cdd482e6a78e1/psutil-5.7.0-cp38-cp38-linux_x86_64.whl
  13. Requirement already satisfied: PyYAML==5.3.1 in /usr/lib/python3/dist-packages (from -r /home/fhe/codechecker/analyzer/requirements.txt (line 4)) (5.3.1)
  14. Installing collected packages: lxml, portalocker, psutil
  15. Attempting uninstall: portalocker
  16. Found existing installation: portalocker 1.5.1
  17. Not uninstalling portalocker at /usr/lib/python3/dist-packages, outside environment /home/fhe/codechecker/venv
  18. Can't uninstall 'portalocker'. No files were found to uninstall.
  19. Attempting uninstall: psutil
  20. Found existing installation: psutil 5.5.1
  21. Not uninstalling psutil at /usr/lib/python3/dist-packages, outside environment /home/fhe/codechecker/venv
  22. Can't uninstall 'psutil'. No files were found to uninstall.
  23. Successfully installed lxml-4.5.0 portalocker-1.7.0 psutil-5.7.0
  24. Requirement already satisfied: lxml==4.5.0 in ./venv/lib/python3.8/site-packages (from -r /home/fhe/codechecker/web/requirements.txt (line 1)) (4.5.0)
  25. Collecting sqlalchemy==1.3.16
  26. Using cached SQLAlchemy-1.3.16-cp38-cp38-manylinux2010_x86_64.whl (1.2 MB)
  27. Processing /home/fhe/.cache/pip/wheels/70/08/70/cea787a7e95817b831469fa42af076046e55a05f7c94657463/alembic-1.4.2-py2.py3-none-any.whl
  28. Collecting portalocker==1.7.0
  29. Using cached portalocker-1.7.0-py2.py3-none-any.whl (14 kB)
  30. Processing /home/fhe/.cache/pip/wheels/90/c9/b6/04665702b01dbd9ee92a05e834b627948ed01cdd482e6a78e1/psutil-5.7.0-cp38-cp38-linux_x86_64.whl
  31. Collecting codechecker_api==6.36.0-dev1
  32. Using cached codechecker_api-6.36.0.dev1-py3-none-any.whl (58 kB)
  33. Collecting codechecker_api_shared==6.36.0-dev1
  34. Using cached codechecker_api_shared-6.36.0.dev1-py3-none-any.whl (8.7 kB)
  35. Requirement already satisfied: python-dateutil in /usr/lib/python3/dist-packages (from alembic==1.4.2->-r /home/fhe/codechecker/web/requirements.txt (line 3)) (2.7.3)
  36. Collecting python-editor>=0.3
  37. Using cached python_editor-1.0.4-py3-none-any.whl (4.9 kB)
  38. Requirement already satisfied: Mako in /usr/lib/python3/dist-packages (from alembic==1.4.2->-r /home/fhe/codechecker/web/requirements.txt (line 3)) (1.1.0)
  39. Processing /home/fhe/.cache/pip/wheels/0a/52/7e/8054b57725b8f2b9ddbaacb81b271b939681cc03f8231e6ebc/thrift-0.13.0-cp38-cp38-linux_x86_64.whl
  40. Requirement already satisfied: six>=1.7.2 in /usr/lib/python3/dist-packages (from thrift==0.13.0->codechecker_api==6.36.0-dev1->-r /home/fhe/codechecker/web/requirements.txt (line 7)) (1.14.0)
  41. Installing collected packages: sqlalchemy, python-editor, alembic, portalocker, psutil, codechecker-api-shared, thrift, codechecker-api
  42. Attempting uninstall: sqlalchemy
  43. Found existing installation: SQLAlchemy 1.3.12
  44. Not uninstalling sqlalchemy at /usr/lib/python3/dist-packages, outside environment /home/fhe/codechecker/venv
  45. Can't uninstall 'SQLAlchemy'. No files were found to uninstall.
  46. Attempting uninstall: alembic
  47. Found existing installation: alembic 1.1.0.dev0
  48. Not uninstalling alembic at /usr/lib/python3/dist-packages, outside environment /home/fhe/codechecker/venv
  49. Can't uninstall 'alembic'. No files were found to uninstall.
  50. Attempting uninstall: portalocker
  51. Found existing installation: portalocker 1.5.1
  52. Not uninstalling portalocker at /usr/lib/python3/dist-packages, outside environment /home/fhe/codechecker/venv
  53. Can't uninstall 'portalocker'. No files were found to uninstall.
  54. Attempting uninstall: psutil
  55. Found existing installation: psutil 5.5.1
  56. Not uninstalling psutil at /usr/lib/python3/dist-packages, outside environment /home/fhe/codechecker/venv
  57. Can't uninstall 'psutil'. No files were found to uninstall.
  58. Successfully installed alembic-1.4.2 codechecker-api-6.36.0.dev1 codechecker-api-shared-6.36.0.dev1 portalocker-1.7.0 psutil-5.7.0 python-editor-1.0.4 sqlalchemy-1.3.16 thrift-0.13.0
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement