3

我试图安装beautifulsoup。我收到这样的错误:
<-- 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'

当我在 vim 中运行我的 Python 代码时,我遇到了类似的错误::!python %

4

3 回答 3

6

您可以像这样测试模块是否安装:

$ python
>>> import modulename
于 2009-01-16T23:40:46.560 回答
1

我会尝试以下方法:

  1. 打开 Python 外壳
  2. 类型import <moduleName>
  3. 解析结果(无错误、ImportError 或某些模块加载错误)
  4. 尝试从导入的模块调用任何函数(查看模块是否正确初始化)。

你需要更复杂的东西吗?

于 2009-01-16T23:41:29.693 回答
0

try: from prettytable import PrettyTable except: try: print "\033[31mPython-prettytable Module [Not Available]\033[0m" os.system('sudo apt-get install python-setuptools') os.system('sudo easy_install prettyTable') print "\033[33mPython-prettytable Module [Installed]\033[0m" except: print "PrettyTable Python Module Installation failed." print "\033[32mPython-prettytable 模块 [可用]\033[0m"

于 2013-09-12T10:24:02.037 回答