Ibrahim Najjar
Ibrahim Najjar

Reputation: 19423

Getting Started with Firefox Add-on SDK

I decided to learn to develop Firefox add-ons using the Add-on SDK and I was following the tutorial from the Mozilla website. When I got to the point of running cfx run I got the following exception (What the heck):

NOTE: Firefox version 23.0, Add-on SDK 1.14, Python 2.6.6, OS Windows XP SP3

(D:\addon-sdk-1.14) D:\my_addon>cfx run
Traceback (most recent call last):
  File "D:\addon-sdk-1.14\bin\cfx", line 33, in <module>
    cuddlefish.run()
  File "D:\addon-sdk-1.14\python-lib\cuddlefish\__init__.py", line 928, in run
    bundle_sdk=options.bundle_sdk)
  File "D:\addon-sdk-1.14\python-lib\cuddlefish\runner.py", line 640, in run_app

    print >>sys.stderr, "Using binary at '%s'." % runner.binary
LookupError: unknown encoding: cp720
Error in atexit._run_exitfuncs:
Traceback (most recent call last):
  File "D:\Python26\lib\atexit.py", line 24, in _run_exitfuncs
    func(*targs, **kargs)
  File "D:\addon-sdk-1.14\python-lib\cuddlefish\runner.py", line 534, in maybe_r
emove_outfile
    os.remove(outfile)
WindowsError: [Error 32] The process cannot access the file because it is being
used by another process: 'c:\\docume~1\\ab\\locals~1\\temp\\harness-stdout-p7spr
q'
Error in sys.exitfunc:
Traceback (most recent call last):
  File "D:\Python26\lib\atexit.py", line 24, in _run_exitfuncs
    func(*targs, **kargs)
  File "D:\addon-sdk-1.14\python-lib\cuddlefish\runner.py", line 534, in maybe_r
emove_outfile
    os.remove(outfile)
WindowsError: [Error 32] The process cannot access the file because it is being
used by another process: 'c:\\docume~1\\ab\\locals~1\\temp\\harness-stdout-p7spr
q'

Upvotes: 4

Views: 1049

Answers (2)

Daniel Charles
Daniel Charles

Reputation: 465

Just wanted to mention, using Python 2.7 might not work for some people. The Add-On SDK's README file states "Before proceeding, please make sure you've installed Python 2.5, 2.6, or 2.7", so I originally installed Python 2.7.6. (Note that this is with version 1.15 of the Add-On SDK.) Upon entering cfx run, I got a similar (though not identical) error message (which can be found in my bug report). After downgrading to Python 2.6.6, I no longer receive that error. Indeed, the Troubleshooting page for the Add-On SDK states that cfx currently expects Python 2.5 or 2.6. Older and newer versions may or may not work.

Upvotes: 1

paa
paa

Reputation: 5054

It's a python (2.6) bug

Try the proposed workaround or upgrade to 2.7

Upvotes: 5

Related Questions