Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
from mypackage.pkg import mymodule ... reload(mypackage.pkg.mymodule)
結果はNameError: global name 'mypackage' is not defined.
NameError: global name 'mypackage' is not defined.
mymoduleはどのようにリロードする必要がありますか?
from mypackage.pkg import mymodule reload(mymodule)
また
import mypackage.pkg.mymodule ... reload(mypackage.pkg.mymodule)