ubuntu 24.04 error: cannot uninstall blinker 1.7.0, record file not found. hint

最近在打python3.12的镜像,安装browser-gym的核心库,编译一个使用browswer agents的环境,然后出现了下面的问题:

error: cannot uninstall blinker 1.7.0, record file not found. hint: the package was installed by debian.

系统是ubuntu 24.04, 使用的是dockerfile编译的。

解决方法

使用apt-get remove这个库即可:

apt-get remove python3-blinker -y

你可能感兴趣的:(ubuntu,linux,运维)