Force import module from Python standard library instead of PYTHONPATH default

China☆狼群 提交于 2019-11-30 17:46:16

The ideal solution would be to rename your module to something not in the standard library.

You can also switch absolute imports on if you're on Python 2.5+:

from __future__ import absolute_import

Don't.

If you have accidentally chosen a standard library module name, change your module name to end the conflict.

You can select the module you want to import with the imp module:

import imp
mymodule = imp.load_module(name, file, pathname, description) 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!