1

初心者には、bzr プラグインのプッシュ アンド アップデートをインストールするために必要な手順が明確ではありません。

プラグインはbzr documentationで説明されており、プラグインのインストール方法を説明する別のドキュメント ページがあります。

しかし、インストールの明確なガイドはありません。

4

1 に答える 1

3
  • プラグインディレクトリを見つける

    python
    >>> from bzrlib import plugin
    >>> list_of_bzr_plugin_paths = [os.path.abspath(p)
    ... for p in plugin.get_standard_plugins_path()]
    

    ライブラリ(ubuntu上)は次のとおりです。

    • $HOME/.bazaar/plugins'
    • /usr/lib/python2.7/dist-packages/bzrlib/plugins'

* ランチパッドからインストール

    bzr branch lp:bzr-push-and-update 

  • エラーを回避するためにディレクトリの名前を変更して、ランチパッドからインストールします。

    bzr branch lp:bzr-push-and-update ~/.bazaar/plugins/push_and_update
    
于 2012-07-12T14:45:04.717 に答える