vote up 1 vote down star

I tried to install beautifulsoup. I get such an error:
<-- snip --> raise MissingSectionHeaderError(fpname, lineno, line) ConfigParser.MissingSectionHeaderError: File contains no section headers. file: /Users/Sam/.pydistutils.cfg, line: 1 'install_lib = ~/Library/Python/$py_version_short/site-packages\n'

I get an similar error as I run my Python code in vim by: :!python %

flag

2 Answers

vote up 6 vote down check

You can test if a module is installed like so:

$ python
>>> import modulename
link|flag
vote up 1 vote down

I'd try the following:

  1. Open Python shell
  2. Type import <moduleName>
  3. Parse the results (no error, ImportError or some module loading error)
  4. Try to invoke any function from imported module (to see if module is correctly initialized).

Do you need something more sophisticated?

link|flag

Your Answer

Get an OpenID
or

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