我正在尝试在 python 中做线路配置文件和内存配置文件。
我导入了 line_profiler
从 line_profiler 导入 LineProfiler
当我运行我的代码时,我收到错误消息:
ModuleNotFoundError: 没有名为“line_profiler”的模块
当我尝试使用 pip install 安装它时:
py -m pip install line_profiler
一切都很好,但最后它给出了红色的东西:
我想知道是否有人可以帮助我解决这个问题,或者是否有人知道除了 from line_profiler import LineProfiler 和 import line_profiler to import line_profiler 之外的其他方法
最佳答案
您可以从 here 安装预构建的二进制文件
关于python - 没有名为 'line_profiler' 的模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53053783/