Python中的sys.path

sys.path是个列表,所以在末尾添加目录是很容易的,用sys.path.append就行了。当这个append执行完之后,新目录即时起效,以后的每次import操作都可能会检查这个目录。如同解决方案所示,可以选择用
sys.path.insert(0,…, )这样新添加的目录会优先于其他目录被import检查。
参考:http://blog.csdn.net/shanliangliuxing/article/details/8823461

你可能感兴趣的:(python)