包的引入(base版本)
Posted F
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了包的引入(base版本)相关的知识,希望对你有一定的参考价值。
1 #author F 2 3 import os 4 import sys 5 print(__file__) #相对路径 6 print(os.path.abspath(__file__)) #绝对路径 7 print(os.path.dirname(os.path.abspath(__file__))) 8 print(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) 9 BASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 10 11 sys.path.append(BASE_PATH) 12 from conf import settings 13 from core import main 14 main.sayHello()
以上是关于包的引入(base版本)的主要内容,如果未能解决你的问题,请参考以下文章
sun.misc.BASE64Encoder找不到jar包的解决方法
sun.misc.BASE64Encoder找不到jar包的解决方法