我正在使用python 2.7.2运行ubuntu 11.10。当我导入随机模块时,我收到错误
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/random.py", line 47, in <module>
from os import urandom as _urandom
ImportError: cannot import name urandom
谷歌搜索显示,这似乎是使用virtualenv的人们的常见问题。通常建议的解决方案是简单地在您遇到问题的目录上重新运行virtualenv。但是,我没有安装virtualenv。任何人都可以向我提供有关该做什么的任何指导吗?
我看过ImportError: cannot import name "urandom";它没有帮助,因为我没有安装virtualenv(我的$ ENV是空的,以防万一有人好奇)。
我也看过Python ImportError cannot import urandom Since Ubuntu 12.04 upgrade;它也没有帮助,因为我没有使用virtualenv。
提前致谢!