Talk:Labs/Jetpack/Reboot/Getting Started

From MozillaWiki
Jump to: navigation, search

Error at jpx run

optparse.OptionConflictError: option -r/--use-server: conflicting option string(s): -r

I had to edit jep-28/packages/atul-packages/packages/jetpack/python-lib/jetpack.py from

   parser_options = {
       ("-r", "--runner",): dict(dest="runner",

to

   parser_options = {
       ("-R", "--runner",): dict(dest="runner",


--Xilent 14:19, 29 January 2010 (UTC)

package.json and manifest.json

   jpx run
   IOError: [Errno 2] No such file or directory: jep-28/packages/my-first-jetpack/package.json


   ln -s manifest.json package.json

fixed it


--Xilent 14:35, 29 January 2010 (UTC)