我遇到了问题,Python没有加载动态c库_fileio
~ $ python
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:05:24)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
Could not open PYTHONSTARTUP
IOError: [Errno 2] No such file or directory: '/home/sven/.pythonrc'
>>> import io
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.6/io.py", line 63, in <module>
import _fileio
ImportError: No module named _fileio
>>>
~ $ locate _fileio
/usr/lib/python2.6/lib-dynload/_fileio.so
~ $ echo $PYTHONPATH
/usr/lib/python2.6/
问候Sven
答案 0 :(得分:1)
似乎是一个环境问题,源于这一行:
IOError: [Errno 2] No such file or directory: '/home/sven/.pythonrc'
要解决此问题,请找到.pythonrc
并确保PYTHONSTARTUP
文件中的.bashrc
环境变量指向此文件位置。如果它确实是正确的,请尝试使用/home/sven/.pythonrc
的硬编码路径,而不是~/.pythonrc
之类的内容。
此外,如果我没记错,.pythonrc
实际上应该是*.py
文件,但这可能会因发行版而异。
答案 1 :(得分:0)
我的zshrc文件中有这一行
export PYTHONPATH=/usr/lib/python2.6
但是ubuntu使用默认的Python 2.7.1
当我从上面删除该行时,错误消息消失了。
对不起,我的错。