web-dev-qa-db-ja.com

18.04.1 LTSにFirefox Developer Editionをインストールする際のエラー

そのため、Ubuntu 18.04.1 LTSに通常のFirefox Quantum65.0をインストールしています。 Firefox開発者版をインストールしたい。

私はすでに試しました:

Sudo add-apt-repository ppa:ubuntu-mozilla-daily/firefox-aurora
Sudo apt-get update
Sudo apt-get install firefox

ただし、通常のFirefoxを再インストールするだけです。だから私は試しました:

Sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
Sudo apt-get update
Sudo apt-get install ubuntu-make

そしてumake web firefox-devを実行するとChoose installation path: /home/me/.local/share/umake/web/firefox-devが表示され、Enterキーを押すと次のエラーが表示されます。

ERROR: One default was already registered, can't register a second one in that choices set: ['en-US', 'en-US', 'ach', 'af', 'sq', 'ar', 'an', 'hy-AM', 'as', 'ast', 'az', 'eu', 'be', 'bn-BD', 'bn-IN', 'bs', 'br', 'bg', 'my', 'ca', 'zh-CN', 'zh-TW', 'hr', 'cs', 'da', 'nl', 'en-GB', 'en-CA', 'en-ZA', 'en-US', 'eo', 'et', 'fi', 'fr', 'fy-NL', 'ff', 'Gd', 'gl', 'ka', 'de', 'el', 'gn', 'gu-IN', 'he', 'hi-IN', 'hu', 'is', 'id', 'ia', 'ga-IE', 'it', 'ja', 'kab', 'kn', 'cak', 'kk', 'km', 'ko', 'lv', 'lij', 'lt', 'dsb', 'mk', 'mai', 'ms', 'ml', 'mr', 'ne-NP', 'nb-NO', 'nn-NO', 'oc', 'or', 'fa', 'pl', 'pt-BR', 'pt-PT', 'pa-IN', 'ro', 'rm', 'ru', 'sr', 'si', 'sk', 'sl', 'son', 'es-AR', 'es-CL', 'es-MX', 'es-ES', 'sv-SE', 'ta', 'te', 'th', 'tr', 'uk', 'hsb', 'ur', 'uz', 'vi', 'cy', 'xh']
ERROR: Unhandled exception
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/umake/tools.py", line 158, in wrapper
    function(*args, **kwargs)
  File "/usr/lib/python3/dist-packages/umake/frameworks/web.py", line 116, in get_metadata_and_check_license
    UI.delayed_display(TextWithChoices(_("Choose language: {}".format(default_label)), languages, True))
  File "/usr/lib/python3/dist-packages/umake/interactions/__init__.py", line 59, in __init__
    raise BaseException(message)
BaseException: One default was already registered, can't register a second one in that choices set: ['en-US', 'en-US', 'ach', 'af', 'sq', 'ar', 'an', 'hy-AM', 'as', 'ast', 'az', 'eu', 'be', 'bn-BD', 'bn-IN', 'bs', 'br', 'bg', 'my', 'ca', 'zh-CN', 'zh-TW', 'hr', 'cs', 'da', 'nl', 'en-GB', 'en-CA', 'en-ZA', 'en-US', 'eo', 'et', 'fi', 'fr', 'fy-NL', 'ff', 'Gd', 'gl', 'ka', 'de', 'el', 'gn', 'gu-IN', 'he', 'hi-IN', 'hu', 'is', 'id', 'ia', 'ga-IE', 'it', 'ja', 'kab', 'kn', 'cak', 'kk', 'km', 'ko', 'lv', 'lij', 'lt', 'dsb', 'mk', 'mai', 'ms', 'ml', 'mr', 'ne-NP', 'nb-NO', 'nn-NO', 'oc', 'or', 'fa', 'pl', 'pt-BR', 'pt-PT', 'pa-IN', 'ro', 'rm', 'ru', 'sr', 'si', 'sk', 'sl', 'son', 'es-AR', 'es-CL', 'es-MX', 'es-ES', 'sv-SE', 'ta', 'te', 'th', 'tr', 'uk', 'hsb', 'ur', 'uz', 'vi', 'cy', 'xh']

ここで正確に何が問題であり、どうすれば解決できますか?どんな助けもappriciatedされます。ありがとう

4
Ajo

Ubuntuの公式リポジトリとUbuntuデスクトップのリポジトリには、それぞれumakeバージョン16.11.1ubuntu118.05〜bionic1が含まれています。これは、そのバージョンのumakeのバグのようです。 Galileo Sartor のリポジトリからumakeをインストールしましたが、そのumakeではすべて正常に動作するようです。このリポジトリには、インストール時のumakeバージョン18.09 + 201902042247〜ubuntu18.04.1が含まれています。そのumakeは、Firefox Developer Editionバージョン65.0b5をインストールしました。

  • 以前にインストールしたUbuntu makeおよびUbuntu Desktopのリポジトリをアンインストールします。

    Sudo apt autoremove ubuntu-make
    Sudo add-apt-repository --remove ppa:ubuntu-desktop/ubuntu-make
    
  • 上記のリポジトリからUbuntu makeをインストールし、次にfirefox-devをインストールするには:

    Sudo add-apt-repository ppa:lyzardking/ubuntu-make
    Sudo apt install ubuntu-make
    umake web firefox-dev
    

このリポジトリには、umakeの毎日のビルドバージョンが含まれており、 make-Ubuntu Wiki にも記載されているため、信頼できるppaと見なされる可能性があります。

1
Kulfy

Umakeコマンドで言語を指定するだけです

umake web firefox-dev --lang en-US

--lang en-USを任意の言語に置き換えてもかまいません。

buntu umake issue tracker git からのソリューションクレジット

1
Clain Dsilva