Como corrijo “bzr: ERROR: Não foi possível determinar seu nome. "?


4

Estou tentando quickly createmeu primeiro aplicativo e estou recebendo erros gtk quando tento executar ou criar um aplicativo.

Aqui está uma cópia do que eu executei e que resultados obtive:

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

Respostas:


5

Você precisa dizer ao bzr qual é o seu nome usando o bzr whoamicomando, assim:

bzr whoami "Jorge Castro <jorge@ubuntu.com>"

Substitua seu nome e endereço, é claro. Você pode ver todas as opções whoami fazendo check-out bzr help whoami.

Depois de definir seu nome, execute novamente o comando rapid package.

E os "erros" do GTK são avisos, e não erros. Muitos aplicativos os descartam por vários motivos, mas não devem ser interpretados como algo sério que está errado.

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.