[Fixed]-How to install Django app without its models?

1👍

Not sure I would recommend doing this, but if you want to you can override the migrations using the MIGRATIONS_MODULES setting:

MIGRATION_MODULES = {
    'app_name': None,
}

This will disable migrations for that application. But like Shang Wang said, if you do this and the app requires those models then the app won’t work.

Leave a comment