Ich habe virtualenv erstellt, ein neues leeres Django-Projekt und möchte Channels installieren. Ich benutze Python 3.6.3. Ich habe getippt pip install -U channels
und das ist OUTPUT :
...
Failed building wheel for twisted
...
Command "/home/marcin/Documents/django_projects/channels/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-ic8ux9ei/twisted/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-ox6bclm5-record/install-record.txt --single-version-externally-managed --compile --install-headers /home/marcin/Documents/django_projects/channels/include/site/python3.6/twisted" failed with error code 1 in /tmp/pip-build-ic8ux9ei/twisted/
pip list
AUSGABE :
...
Django (1.11.6)
...
pip (9.0.1)
...
setuptools (36.6.0)
...
wheel (0.29.0)
...
Ich sehe, dass ich Twisted nicht habe, also habe ich getippt : pip install twisted
. Dies ist OUTPUT :
...
Failed building wheel for twisted
...
Command "/home/marcin/Documents/django_projects/channels/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-a54n37_z/twisted/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-9p23ehnv-record/install-record.txt --single-version-externally-managed --compile --install-headers /home/marcin/Documents/django_projects/channels/include/site/python3.6/twisted" failed with error code 1 in /tmp/pip-build-a54n37_z/twisted/
Wie Sie sehen können, sind die Ausgänge fast gleich. Wie kann ich Kanäle installieren?
sudo apt install python3.6-dev
und wiederholen Sie den Installationsvorgang für pip.Antworten:
Die Fehlermeldung ist nicht besonders hilfreich, aber es scheint, dass Ihnen das
python3.6-dev
Paket fehlt , das installiert wird mitapt
:Wiederholen Sie danach Ihre Installation mit pip wie zuvor.
quelle
Sie müssen das
build-essential
Paket auch, wenn es noch nicht installiert wurde. Der vollständige Installationsbefehl lautet:quelle
Bei der Installation von rasa_core ist ein ähnliches Problem aufgetreten.
Ein Problem wurde in wenigen Schritten behoben:
Endlich in der Lage, rasa_core erfolgreich zu installieren.
quelle