1)加入相关路径
sys.path.append('/www/xxx/xxx')
sys.path.append('/env/xxx/lib/python3.8/site-packages')
2)覆写启动方法
def get_wsgi_application():
django.setup(set_prefix=False)
# 此处调用和使用项目中的内容
return WSGIHandler()
application = get_wsgi_application()