1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| (VenvPython) sunmy@LDSPDVS:~$ pip install pytest Collecting pytest Downloading pytest-8.3.5-py3-none-any.whl.metadata (7.6 kB) Collecting iniconfig (from pytest) Downloading iniconfig-2.1.0-py3-none-any.whl.metadata (2.7 kB) Collecting packaging (from pytest) Downloading packaging-25.0-py3-none-any.whl.metadata (3.3 kB) Collecting pluggy<2,>=1.5 (from pytest) Downloading pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB) Downloading pytest-8.3.5-py3-none-any.whl (343 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 343.6/343.6 kB 1.2 MB/s eta 0:00:00 Downloading pluggy-1.6.0-py3-none-any.whl (20 kB) Downloading iniconfig-2.1.0-py3-none-any.whl (6.0 kB) Downloading packaging-25.0-py3-none-any.whl (66 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.5/66.5 kB 16.1 MB/s eta 0:00:00 Installing collected packages: pluggy, packaging, iniconfig, pytest Successfully installed iniconfig-2.1.0 packaging-25.0 pluggy-1.6.0 pytest-8.3.5 (VenvPython) sunmy@LDSPDVS:~$ (VenvPython) sunmy@LDSPDVS:~$ pip list Package Version --------- ------- iniconfig 2.1.0 packaging 25.0 pip 24.0 pluggy 1.6.0 pytest 8.3.5 (VenvPython) sunmy@LDSPDVS:~$
|