无法在python虚拟环境中导入runpy模块

时间:2015-03-30 22:30:40

标签: python-2.7 virtualenv

在尝试使用bash / activate在虚拟环境中运行内存分析器(https://pypi.python.org/pypi/memory_profiler)时,我无法运行任何默认测试代码

python -m memory_profiler test/test_as.py
Could not import runpy module

虽然它在另一个虚拟环境中运行良好,

 > python -m memory_profiler ./test/test_as.py
 Filename: ./test/test_as.py
 Line #    Mem usage    Increment   Line Contents
 ================================================
 3    9.199 MiB    0.000 MiB   @profile
 4                             def f():
 5    9.207 MiB    0.008 MiB       o = math.sqrt(2013)
 6    9.207 MiB    0.000 MiB       return o

如何导入runpy模块或使用pip或easy install进行安装? 或者手动安装模块? 提前谢谢。

1 个答案:

答案 0 :(得分:4)

删除环境并使用virtualenv创建一个新环境对我有用...今天早上我找不到任何其他解决方案