1

对于新手来说,安装 bzr 插件 push-and-update 所需的步骤并不清楚。

该插件在 bzr 文档中进行了描述,还有另一个文档页面解释了如何安装插件

但是没有明确的安装指南。

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 回答