Import OK:
[root@034123cac994 /]# python
Python 3.12.9 (main, Feb 4 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandocfilters
>>>
Import works OK:
[root@cf2b7143671b /]# python
Python 3.12.9 (main, Feb 4 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandocfilters
>>>
Looks good to me:
[root@99824f9f1bd1 /]# python3
Python 3.12.9 (main, Feb 4 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pkginfo
>>> installed = pkginfo.Installed(pkginfo)
>>> installed.license
'MIT'
>>>
Looks good to me (on centos 10 stream):
# rpm -q python3-msgpack
python3-msgpack-1.1.0-2.el10_0.x86_64
# python
Python 3.12.9 (main, Feb 4 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import msgpack
>>> msgpack.packb([1, 2, 3], use_bin_type=True)
b'\x93\x01\x02\x03'
>>> msgpack.unpackb(_, raw=False)
[1, 2, 3]
>>>
#
Looks good to me (on centos 10 stream):
# dnf install ./python3-msgpack-1.1.0-2.el10_1.x86_64.rpm
Last metadata expiration check: 0:09:09 ago on Tue Feb 25 10:19:05 2025.
Dependencies resolved.
=======================================================================
Package Architecture Version Repository Size
=======================================================================
Installing:
python3-msgpack x86_64 1.1.0-2.el10_1 @commandline 106 k
Transaction Summary
=======================================================================
Install 1 Package
Total size: 106 k
Installed size: 329 k
Is this ok [y/N]: y
Downloading Packages:
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : python3-msgpack-1.1.0-2.el10_1.x86_64 1/1
Running scriptlet: python3-msgpack-1.1.0-2.el10_1.x86_64 1/1
Installed:
python3-msgpack-1.1.0-2.el10_1.x86_64
Complete!
[root@12343bd36d00 tmp]# python
Python 3.12.9 (main, Feb 4 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import msgpack
>>> msgpack.packb([1, 2, 3], use_bin_type=True)
b'\x93\x01\x02\x03'
>>> msgpack.unpackb(_, raw=False)
[1, 2, 3]
>>>
OK for me:
# dnf install .../python3-nest-asyncio-1.6.0-5.el10_1.noarch.rpm
CentOS Stream 10 - BaseOS 4.4 MB/s | 6.3 MB 00:01
CentOS Stream 10 - AppStream 2.1 MB/s | 2.7 MB 00:01
CentOS Stream 10 - Extras packages 9.5 kB/s | 3.8 kB 00:00
Dependencies resolved.
=========================================================================
Package Architecture Version Repository Size
=========================================================================
Installing:
python3-nest-asyncio noarch 1.6.0-5.el10_1 @commandline 19 k
Transaction Summary
=========================================================================
Install 1 Package
Total size: 19 k
Installed size: 25 k
Is this ok [y/N]: y
y
Downloading Packages:
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : python3-nest-asyncio-1.6.0-5.el10_1.noarch 1/1
Running scriptlet: python3-nest-asyncio-1.6.0-5.el10_1.noarch 1/1
Installed:
python3-nest-asyncio-1.6.0-5.el10_1.noarch
Complete!
# python
python
Python 3.12.9 (main, Feb 4 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import nest_asyncio
>>> nest_asyncio.apply()
>>>
OK for me.
OK for me.
Looks good to me.
Looks good to me.
Looks good to me
Import works: