Reputation: 2591
I tried installing django channels on my virtual environment. But it has failed. And it gives the following error 'failed building wheel for twisted'.
What is this about.? And how can i handle this issue? I have python 3.5 on my virtualenv, and my OS in Ubuntu.
Upvotes: 0
Views: 1364
Reputation: 2591
In order to install django-channel, do these thee step:
sudo apt-get install python3-dev python-pip libxml2-dev libxslt1-dev zlib1g-dev libffi-dev libssl-dev
pip install --verbose twisted
pip install -U Channels
Upvotes: 3