Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the "Bad magic number" ImportError in python, and how do I fix it?

The only thing I can find online suggests this is caused by compiling a .py -> .pyc file and then trying to use it with the wrong version of python. In my case, however, the file seems to import fine some times but not others, and I'm not sure why.

The information python's providing in the traceback isn't particularly helpful (which is why I was asking here...), but here it is in case it helps:

Traceback (most recent call last):
  File "run.py", line 7, in <module>
    from Normalization import Normalizer
share|improve this question
Could you provide the code in which the issue is occuring? – Evan Fosmark Feb 5 '09 at 3:08
And which version of python are you using? – paxdiablo Feb 5 '09 at 3:27
And is Normalization one of your files or a third party one? – paxdiablo Feb 5 '09 at 3:30
These are my files and I'm using python 2.5.2. – Noah Feb 5 '09 at 3:32
Hrm, okay, I think I must have been importing an old .pyc file that was left behind long ago when I moved the .py file, and so I could import the new version but not the old. – Noah Feb 5 '09 at 3:35
show 3 more comments

4 Answers

up vote 60 down vote accepted

The magic number comes from UNIX-type systems where the first few bytes of a file held a marker indicating the file type.

Python puts a similar marker into its pyc files when it creates them.

Then the python interpreter makes sure this number is correct when loading it.

Anything that damages this magic number will cause your problem. This includes editing the pyc file or trying to run a pyc from a different version of python (usually later) than your interpreter.

If they are your pyc files, just delete them and let the interpreter re-compile the py files. On UNIX type systems, that could be something as simple as:

rm *.pyc

or:

find . -name '*.pyc' -delete

If they are not yours, you'll have to either get the py files for re-compilation, or an interpreter that can run the pyc files with that particular magic value.

One thing that might be causing the intermittent nature. The pyc that's causing the problem may only be imported under certain conditions. It's highly unlikely it would import sometimes. You should check the actual full stack trace when the import fails?

As an aside, the first word of all my 2.5.1(r251:54863) pyc files is 62131, 2.6.1(r261:67517) is 62161. The list of all magic numbers can be found in Python/import.c, reproduced here for completeness:

1.5:   20121
1.5.1: 20121
1.5.2: 20121
1.6:   50428
2.0:   50823
2.0.1: 50823
2.1:   60202
2.1.1: 60202
2.1.2: 60202
2.2:   60717
2.3a0: 62011
2.3a0: 62021
2.3a0: 62011
2.4a0: 62041
2.4a3: 62051
2.4b1: 62061
2.5a0: 62071
2.5a0: 62081
2.5a0: 62091
2.5a0: 62092
2.5b3: 62101
2.5b3: 62111
2.5c1: 62121
2.5c2: 62131
2.6a0: 62151
2.6a1: 62161
2.7a0: 62171
share|improve this answer
1  
Thanks -- this didn't directly help me figure out my problem, but it's nice to know the answer anyways! – Noah Feb 5 '09 at 3:36

Deleting all .pyc files will fix "Bad Magic Number" error.

find . -name "*.pyc" -delete
share|improve this answer
6  
It's probably better to use find . -name "*.pyc" -delete, as you'll have issues with spaces (and possibly with too long a command line) if you expand all the filenames to pass to rm. – Andrew Aylett May 25 '10 at 14:19
It's sad that this, the correct answer, is buried underneath a purely academic and unhelpful answer... – Cerin Jun 25 '12 at 16:11
3  
IMO thats quite a dangerous script. What if a package was delivered with only .pyc files in order to keep it closed source? Oops, you just deleted the application. – Dan Mantyla Sep 18 '12 at 15:06

Loading a python3 generated *.pyc file with python2 also causes this error

share|improve this answer

This is much more efficent than above.

find {directory-of-.pyc-files} -name "*.pyc" | xargs rm -rf

where {directory-of-.pyc-files} is the directory that contains the compiled python files.

share|improve this answer
That is in case you have the py files on hand, if not you will need to downgrade the python install. – Leon Fedotov May 29 '10 at 16:15
This is still unsafe for some edge cases. Also why are we doing a recursive delete when we're talking about files? – Jerome Baum Oct 13 '12 at 22:03
Why are you using two processes? Even if find didn't have delete, you could still run find /dir -name "*.pyc" -exec rm '{}' ';' – nailer Nov 13 '12 at 15:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.