恢复/撤消/重做/刷新,交互式 python 会话中的“导入”
可能的重复:
如何卸载(重新加载)Python 模块? < /p>
如何 可以在 python 中“刷新”导入的模块吗?用例:交互式改进模块;到目前为止,我总是完全重新启动交互式会话以重新加载更新的源。
有更好的办法吗?
Possible Duplicate:
How do I unload (reload) a Python module?
Would it be possible to 'refresh' an imported module in python? The use case: interactively improving the module; up til now, I always completely restart the interactive session to reload my updated sources.
Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设名称空间中已经存在名为
foo
的模块,但您在源代码中进行了一些更改并且希望导入新代码,请使用:这里有一个问题:如果您使用了 < code>from foo import bar 并且您已在函数
bar
中进行了后续更改,那么重新加载将不起作用。对于这些情况,您可能更喜欢使用import foo
并调用foo.bar()
,以便您可以重新加载
以使更改生效立即地。如果您经常在这样的交互式会话中工作,那么您可能会对使用 ipython 感兴趣并在您的
ipy_user_conf.py
文件中添加以下行:Supposing a module named
foo
is already present in the namespace, but you have made some changes in source and you want the new code to be imported, use:There is a gotcha here: if you have used
from foo import bar
and you have made subsequent changes in your functionbar
, then the reload will not work for you. For these cases, you might prefer too useimport foo
and callfoo.bar()
so that you canreload
for your changes to take effect immediately.If you are often working in interactive session like this, then perhaps you will be interested to use ipython and add the following lines in your
ipy_user_conf.py
file: