web-dev-qa-db-ja.com

「bzr:エラー:名前を特定できません。」を修正するにはどうすればよいですか?

私は。。をしようとしています quickly create最初のアプリで、アプリケーションを実行または作成しようとするとgtkエラーが発生します。

ここに私が実行したものと私が得た結果のコピーがあります:

daniel@laptop:~/PyDevelopment$ quickly create ubuntu-application app001
Creating project directory app001
Creating bzr repository and committing
Launching your newly created project!
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object `Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object `App001Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
Congrats, your new project is setup! cd /home/daniel/PyDevelopment/app001/ to start hacking.
daniel@laptop:~/PyDevelopment$ cd app001
daniel@laptop:~/PyDevelopment/app001$ quickly design
daniel@laptop:~/PyDevelopment/app001$ quickly rub
ERROR: No rub command found in template ubuntu-application.
Candidate commands are: add, commands, configure, create, debug, design, edit, getstarted, help, license, package, quickly, release, run, save, share, submitubuntu, test, tutorial, upgrade
daniel@laptop:~/PyDevelopment/app001$ quickly run
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object `Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
/usr/lib/python2.7/dist-packages/gi/overrides/Gtk.py:391: Warning: g_object_set_property: construct property "type" for object `App001Window' can't be set after construction
  Gtk.Window.__init__(self, type=type, **kwds)
daniel@laptop:~/PyDevelopment/app001$ quickly package
.......Ubuntu packaging created in debian/
.......
----------------------------------
Command returned some ERRORS:
----------------------------------
bzr: ERROR: Unable to determine your name.
----------------------------------
ERROR: can't create or update ubuntu package
ERROR: package command failed
Aborting
4
Daniel

次のようにbzr whoamiコマンドを使用して、bzrに自分の名前を伝える必要があります。

bzr whoami "Jorge Castro <[email protected]>"

もちろんあなたの名前と住所を置き換えてください。 bzr help whoamiをチェックアウトすると、すべてのwhoamiオプションを見ることができます。

名前を設定したら、すぐにpackageコマンドを再実行します。

また、GTKの「エラー」は警告であり、エラーではありません。多くのアプリケーションがさまざまな理由でそれらを破棄しますが、重大な問題が発生していると解釈されるべきではありません。

5
Jorge Castro