Advertisement
Bullet64

restic_ui

Sep 6th, 2021
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. frank@debian:~$ git clone https://gitlab.com/Bullet64/restic-ui-public.git
  2. Klone nach 'restic-ui-public' ...
  3. remote: Enumerating objects: 5847, done.
  4. remote: Counting objects: 100% (37/37), done.
  5. remote: Compressing objects: 100% (23/23), done.
  6. remote: Total 5847 (delta 18), reused 33 (delta 14), pack-reused 5810
  7. Empfange Objekte: 100% (5847/5847), 73.54 MiB | 16.72 MiB/s, fertig.
  8. Löse Unterschiede auf: 100% (2502/2502), fertig.
  9. frank@debian:~$ cd restic-ui-public
  10. frank@debian:~/restic-ui-public$ python3 -m venv venv
  11. frank@debian:~/restic-ui-public$ source venv/bin/activate
  12. (venv) frank@debian:~/restic-ui-public$ pip install PyQt5
  13. Collecting PyQt5
  14. Downloading PyQt5-5.15.4-cp36.cp37.cp38.cp39-abi3-manylinux2014_x86_64.whl (8.3 MB)
  15. |████████████████████████████████| 8.3 MB 1.1 MB/s
  16. Collecting PyQt5-sip<13,>=12.8
  17. Downloading PyQt5_sip-12.9.0-cp39-cp39-manylinux1_x86_64.whl (328 kB)
  18. |████████████████████████████████| 328 kB 55.3 MB/s
  19. Collecting PyQt5-Qt5>=5.15
  20. Downloading PyQt5_Qt5-5.15.2-py3-none-manylinux2014_x86_64.whl (59.9 MB)
  21. |████████████████████████████████| 59.9 MB 87.7 MB/s
  22. Installing collected packages: PyQt5-sip, PyQt5-Qt5, PyQt5
  23. Successfully installed PyQt5-5.15.4 PyQt5-Qt5-5.15.2 PyQt5-sip-12.9.0
  24. (venv) frank@debian:~/restic-ui-public$ pip install requests
  25. Collecting requests
  26. Downloading requests-2.26.0-py2.py3-none-any.whl (62 kB)
  27. |████████████████████████████████| 62 kB 384 kB/s
  28. Collecting charset-normalizer~=2.0.0
  29. Downloading charset_normalizer-2.0.4-py3-none-any.whl (36 kB)
  30. Collecting idna<4,>=2.5
  31. Downloading idna-3.2-py3-none-any.whl (59 kB)
  32. |████████████████████████████████| 59 kB 4.4 MB/s
  33. Collecting urllib3<1.27,>=1.21.1
  34. Downloading urllib3-1.26.6-py2.py3-none-any.whl (138 kB)
  35. |████████████████████████████████| 138 kB 11.8 MB/s
  36. Collecting certifi>=2017.4.17
  37. Downloading certifi-2021.5.30-py2.py3-none-any.whl (145 kB)
  38. |████████████████████████████████| 145 kB 26.7 MB/s
  39. Installing collected packages: urllib3, idna, charset-normalizer, certifi, requests
  40. Successfully installed certifi-2021.5.30 charset-normalizer-2.0.4 idna-3.2 requests-2.26.0 urllib3-1.26.6
  41. (venv) frank@debian:~/restic-ui-public$ python3 restic_ui.py
  42. Settings File exist
  43. ROW 4
  44.  
  45.  
  46. INIT
  47. "
  48. reading repository password from stdin
  49. created restic repository 066cbe01d7 at /home/frank/b1
  50.  
  51. Please note that knowledge of your password is required to access
  52. the repository. Losing your password means that your data is
  53. irrecoverably lost.
  54. "
  55.  
  56.  
  57. PYTHON VERSION
  58. (venv) frank@debian:~/restic-ui-public$ python -V
  59. Python 3.9.2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement