python 根据路径导入模块
Posted yanzi_meng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 根据路径导入模块相关的知识,希望对你有一定的参考价值。
Import python module NOT on path
常规做法:
- import sys
- sys.path.append(‘C:/full/path‘)
- from foo import util,bar
而要直接通过路径
- import imp
- util = imp.load_source(‘util‘, ‘C:/full/path/foo/util.py‘)
使用时使用util.method,此时并没有定义method
method = util.method后才可以直接用method
以上是关于python 根据路径导入模块的主要内容,如果未能解决你的问题,请参考以下文章