user13658830
user13658830

Reputation:

Unable to located Package Daphne

I'm deploying a django app including django channels using nginx, gunicorn and daphne. But when i install daphne with sudo apt install daphne, it gives E: unable to locate package daphne.

What Should I do?

Upvotes: 1

Views: 1217

Answers (1)

D Malan
D Malan

Reputation: 11414

Daphne is a Python package on PyPI that can be installed using pip:

pip install daphne

Upvotes: 1

Related Questions