

好的,所以我正试图获得PAR和PAR2文件的前端,作为一只老温得和斯狗,工作和不幸的失败。我必须编辑源代码文件,是否需要获取pypar2包并将其存储在某个地方?谢谢你的关心!更新:尝试安装.deb,结果是更暗的屏幕截图.
抢夺
发布于 2021-11-30 17:02:15
PyPar2是基于Python2的,所以这就是为什么它在现代Ubuntu版本中被忽略的原因。
它仍然可以在Ubuntu20.04LTS、21.04和21.10上通过使用以下命令手动下载依赖项来安装:
cd ~/Downloads
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/p/pypar2/pypar2_1.4-7_all.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/main/p/pygtk/python-glade2_2.24.0-4ubuntu1_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/main/p/pygtk/python-gtk2_2.24.0-4ubuntu1_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/v/vte/python-vte_0.28.2-5ubuntu3_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/v/vte/libvte9_0.28.2-5ubuntu3_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/v/vte/libvte-common_0.28.2-5ubuntu3_all.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/p/pycairo/python-cairo_1.16.2-2ubuntu2_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/p/pygobject-2/python-gobject-2_2.28.6-14ubuntu1_amd64.deb
[ "$(lsb_release -cs)" == "impish" -o "$(lsb_release -cs)" == "hirsute" ] && sudo apt-get install ./python-cairo_1.16.2-2ubuntu2_amd64.deb ./python-gobject-2_2.28.6-14ubuntu1_amd64.deb
sudo apt-get install ./pypar2_1.4-7_all.deb ./python-glade2_2.24.0-4ubuntu1_amd64.deb ./python-gtk2_2.24.0-4ubuntu1_amd64.deb ./python-vte_0.28.2-5ubuntu3_amd64.deb ./libvte9_0.28.2-5ubuntu3_amd64.deb ./libvte-common_0.28.2-5ubuntu3_all.debhttps://askubuntu.com/questions/1378427
复制相似问题