web-dev-qa-db-ja.com

ubuntu 19.10でpython-uniconverterパッケージをインストールするにはどうすればよいですか?

Inkscapeを使用してプロットを実行しようとしています。ctrl+ cを使用して画像を別のプログラムにコピーすると、python-uniconverterがないというエラーメッセージが表示されます。

さらに、パッケージが欠落しているように見えるため、apt-get install python-uniconverterでインストールすることはできません。

この不足しているパッケージをインストールする手順を知っていますか?

ありがとうございました!

2

このパッケージは https://packages.ubuntu.com/xenial/python-uniconvertor から手動でダウンロードして、次のコマンドでインストールできます。

cd ~/Downloads
wget http://security.ubuntu.com/ubuntu/pool/universe/p/pillow/python-imaging_3.1.2-0ubuntu1.3_all.deb \
http://archive.ubuntu.com/ubuntu/pool/universe/p/python-reportlab/python-reportlab-accel_3.5.23-1ubuntu0.1_AMD64.deb \
http://security.ubuntu.com/ubuntu/pool/universe/p/python-reportlab/python-reportlab_3.3.0-1ubuntu0.1_all.deb \
http://archive.ubuntu.com/ubuntu/pool/universe/p/python-uniconvertor/python-uniconvertor_1.1.5-2_AMD64.deb
Sudo apt install ./python-imaging_3.1.2-0ubuntu1.3_all.deb \
./python-reportlab-accel_3.5.23-1ubuntu0.1_AMD64.deb \
./python-reportlab_3.3.0-1ubuntu0.1_all.deb \
./python-uniconvertor_1.1.5-2_AMD64.deb
2
N0rbert

Ubuntu 20.04へのインストール

uniconvertor 1.1.5-4をインストールするには、追加のpython-report-accelパッケージをインストールする必要があります。これらのパッケージは、inkscape 1.0をビルドするためにも必要です。

wget http://launchpadlibrarian.net/306203180/python-uniconvertor_1.1.5-4_AMD64.deb  http://launchpadlibrarian.net/303745119/python-imaging_4.0.0-4_all.deb  http://launchpadlibrarian.net/469960854/python3-reportlab_3.5.34-1ubuntu1_all.deb   http://launchpadlibrarian.net/469960848/python-reportlab-doc_3.5.34-1ubuntu1_all.deb

とインストール

Sudo apt install ./python-uniconvertor_1.1.5-4_AMD64.deb ./python-imaging_4.0.0-4_all.deb ./python3-reportlab_3.5.34-1ubuntu1_all.deb ./python-reportlab-doc_3.5.34-1ubuntu1_all.deb

Python-reportlab-docパッケージはpdf/html docusを提供します。

0
abu_bua