Advertisement
zoultrex

docker pip install

Dec 8th, 2022
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.28 KB | None | 0 0
  1. root@0b00be47c693:/api# pip list
  2. Package                Version
  3. ---------------------- -----------
  4. backcall               0.2.0
  5. beautifulsoup4         4.11.1
  6. brotlipy               0.7.0
  7. certifi                2022.9.24
  8. cffi                   1.15.1
  9. chardet                4.0.0
  10. charset-normalizer     2.0.4
  11. conda                  22.11.1
  12. conda-build            3.21.9
  13. conda-package-handling 1.9.0
  14. cryptography           38.0.1
  15. decorator              5.1.1
  16. filelock               3.6.0
  17. flit_core              3.6.0
  18. glob2                  0.7
  19. idna                   3.4
  20. importlib-metadata     4.11.3
  21. ipython                7.31.1
  22. jedi                   0.18.1
  23. Jinja2                 2.10.1
  24. libarchive-c           2.9
  25. MarkupSafe             2.0.1
  26. matplotlib-inline      0.1.6
  27. mkl-fft                1.3.1
  28. mkl-random             1.2.2
  29. mkl-service            2.4.0
  30. numpy                  1.21.5
  31. parso                  0.8.3
  32. pexpect                4.8.0
  33. pickleshare            0.7.5
  34. Pillow                 9.2.0
  35. pip                    22.2.2
  36. pkginfo                1.8.3
  37. pluggy                 1.0.0
  38. prompt-toolkit         3.0.20
  39. psutil                 5.9.0
  40. ptyprocess             0.7.0
  41. pycosat                0.6.4
  42. pycparser              2.21
  43. Pygments               2.11.2
  44. pyOpenSSL              22.0.0
  45. PySocks                1.7.1
  46. pytz                   2022.1
  47. PyYAML                 6.0
  48. requests               2.28.1
  49. ruamel.yaml            0.17.21
  50. ruamel.yaml.clib       0.2.6
  51. setuptools             65.5.0
  52. six                    1.16.0
  53. soupsieve              2.3.2.post1
  54. toolz                  0.12.0
  55. torch                  1.12.1
  56. torchtext              0.13.1
  57. torchvision            0.13.1
  58. tqdm                   4.64.1
  59. traitlets              5.1.1
  60. typing_extensions      4.4.0
  61. urllib3                1.26.12
  62. wcwidth                0.2.5
  63. wheel                  0.37.1
  64. zipp                   3.8.0
  65.  
  66.  
  67. root@0b00be47c693:/api# pip install -r requirements.txt
  68. Collecting sanic==22.6.2
  69.   Using cached sanic-22.6.2-py3-none-any.whl (271 kB)
  70. Collecting transformers==4.22.2
  71.   Using cached transformers-4.22.2-py3-none-any.whl (4.9 MB)
  72. ERROR: Ignored the following versions that require a different python version: 1.8.0 Requires-Python >=3.8,<3.11; 1.8.0rc1 Requires-Python >=3.8,<3.11; 1.8.0rc2 Requires-Python >=3.8,<3.11; 1.8.0rc3 Requires-Python >=3.8,<3.11; 1.8.0rc4 Requires-Python >=3.8,<3.11; 1.8.1 Requires-Python >=3.8,<3.11; 1.9.0 Requires-Python >=3.8,<3.12; 1.9.0rc1 Requires-Python >=3.8,<3.12; 1.9.0rc2 Requires-Python >=3.8,<3.12; 1.9.0rc3 Requires-Python >=3.8,<3.12; 1.9.1 Requires-Python >=3.8,<3.12; 1.9.2 Requires-Python >=3.8; 1.9.3 Requires-Python >=3.8
  73. ERROR: Could not find a version that satisfies the requirement scipy==1.9.3 (from versions: 0.8.0, 0.9.0, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.12.1, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.14.0, 0.14.1, 0.15.0, 0.15.1, 0.16.0, 0.16.1, 0.17.0, 0.17.1, 0.18.0, 0.18.1, 0.19.0, 0.19.1, 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.3.0rc1, 1.3.0rc2, 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.4.0rc1, 1.4.0rc2, 1.4.0, 1.4.1, 1.5.0rc1, 1.5.0rc2, 1.5.0, 1.5.1, 1.5.2, 1.5.3, 1.5.4, 1.6.0rc1, 1.6.0rc2, 1.6.0, 1.6.1, 1.6.2, 1.6.3, 1.7.0rc1, 1.7.0rc2, 1.7.0, 1.7.1, 1.7.2, 1.7.3)
  74. ERROR: No matching distribution found for scipy==1.9.3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement