Failed building wheel for twisted
I made virtualenv, new blank django project and I want to install Channels. I use Python 3.6.3. I typed pip install -U channels
and this is 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('rn', '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
OUTPUT:
...
Django (1.11.6)
...
pip (9.0.1)
...
setuptools (36.6.0)
...
wheel (0.29.0)
...
I see that I don't have Twisted, so I typed:pip install twisted
. This is 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('rn', '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/
As You can see the Outputs are almost the same. How can I install Channels?
python django wheel
add a comment |
I made virtualenv, new blank django project and I want to install Channels. I use Python 3.6.3. I typed pip install -U channels
and this is 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('rn', '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
OUTPUT:
...
Django (1.11.6)
...
pip (9.0.1)
...
setuptools (36.6.0)
...
wheel (0.29.0)
...
I see that I don't have Twisted, so I typed:pip install twisted
. This is 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('rn', '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/
As You can see the Outputs are almost the same. How can I install Channels?
python django wheel
You might be missing a few packages that are installed using apt. Trysudo apt install python3.6-dev
and then repeat the installation process for pip.
– edwinksl
Oct 20 '17 at 23:41
Sounds good; I will write an answer in case there are other people who face the same problem :)
– edwinksl
Oct 21 '17 at 8:54
add a comment |
I made virtualenv, new blank django project and I want to install Channels. I use Python 3.6.3. I typed pip install -U channels
and this is 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('rn', '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
OUTPUT:
...
Django (1.11.6)
...
pip (9.0.1)
...
setuptools (36.6.0)
...
wheel (0.29.0)
...
I see that I don't have Twisted, so I typed:pip install twisted
. This is 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('rn', '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/
As You can see the Outputs are almost the same. How can I install Channels?
python django wheel
I made virtualenv, new blank django project and I want to install Channels. I use Python 3.6.3. I typed pip install -U channels
and this is 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('rn', '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
OUTPUT:
...
Django (1.11.6)
...
pip (9.0.1)
...
setuptools (36.6.0)
...
wheel (0.29.0)
...
I see that I don't have Twisted, so I typed:pip install twisted
. This is 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('rn', '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/
As You can see the Outputs are almost the same. How can I install Channels?
python django wheel
python django wheel
asked Oct 20 '17 at 20:03
gongarekgongarek
47116
47116
You might be missing a few packages that are installed using apt. Trysudo apt install python3.6-dev
and then repeat the installation process for pip.
– edwinksl
Oct 20 '17 at 23:41
Sounds good; I will write an answer in case there are other people who face the same problem :)
– edwinksl
Oct 21 '17 at 8:54
add a comment |
You might be missing a few packages that are installed using apt. Trysudo apt install python3.6-dev
and then repeat the installation process for pip.
– edwinksl
Oct 20 '17 at 23:41
Sounds good; I will write an answer in case there are other people who face the same problem :)
– edwinksl
Oct 21 '17 at 8:54
You might be missing a few packages that are installed using apt. Try
sudo apt install python3.6-dev
and then repeat the installation process for pip.– edwinksl
Oct 20 '17 at 23:41
You might be missing a few packages that are installed using apt. Try
sudo apt install python3.6-dev
and then repeat the installation process for pip.– edwinksl
Oct 20 '17 at 23:41
Sounds good; I will write an answer in case there are other people who face the same problem :)
– edwinksl
Oct 21 '17 at 8:54
Sounds good; I will write an answer in case there are other people who face the same problem :)
– edwinksl
Oct 21 '17 at 8:54
add a comment |
3 Answers
3
active
oldest
votes
The error message is not particularly helpful but it seems you are missing the python3.6-dev
package, which is installed using apt
:
sudo apt update
sudo apt install python3.6-dev
After this, repeat your installation using pip as before.
add a comment |
You also need to the build-essential
package if it hasn't been installed already. The complete install command is:
sudo apt-get install build-essential python3.6-dev
that was indeed my problem, according to my python version, 3.5
– Leggy7
Aug 2 '18 at 20:27
I had installation problems related to rasa core on my Ubuntu machine. This fixed it. Thanks Steve.
– Rajesh
Aug 30 '18 at 17:36
add a comment |
Faced a similar issue while installing rasa_core.
Resolved an issue in a couple of steps:
sudo apt-get update
sudo apt-get install build-esssential python3.6-dev
Finally able to install rasa_core successfully.
1
Hello and welcome to AU. Please refrain from posting answers similar or equal to existing ones. Instead, upvote the one(s) that you solved the problem. This ensures future readers to easily get to the most satisfying answer instead of reading mutiple time the same story.
– Marc Vanhoomissen
Oct 11 '18 at 11:01
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f966939%2ffailed-building-wheel-for-twisted%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The error message is not particularly helpful but it seems you are missing the python3.6-dev
package, which is installed using apt
:
sudo apt update
sudo apt install python3.6-dev
After this, repeat your installation using pip as before.
add a comment |
The error message is not particularly helpful but it seems you are missing the python3.6-dev
package, which is installed using apt
:
sudo apt update
sudo apt install python3.6-dev
After this, repeat your installation using pip as before.
add a comment |
The error message is not particularly helpful but it seems you are missing the python3.6-dev
package, which is installed using apt
:
sudo apt update
sudo apt install python3.6-dev
After this, repeat your installation using pip as before.
The error message is not particularly helpful but it seems you are missing the python3.6-dev
package, which is installed using apt
:
sudo apt update
sudo apt install python3.6-dev
After this, repeat your installation using pip as before.
answered Oct 21 '17 at 8:55
edwinksledwinksl
17.3k125487
17.3k125487
add a comment |
add a comment |
You also need to the build-essential
package if it hasn't been installed already. The complete install command is:
sudo apt-get install build-essential python3.6-dev
that was indeed my problem, according to my python version, 3.5
– Leggy7
Aug 2 '18 at 20:27
I had installation problems related to rasa core on my Ubuntu machine. This fixed it. Thanks Steve.
– Rajesh
Aug 30 '18 at 17:36
add a comment |
You also need to the build-essential
package if it hasn't been installed already. The complete install command is:
sudo apt-get install build-essential python3.6-dev
that was indeed my problem, according to my python version, 3.5
– Leggy7
Aug 2 '18 at 20:27
I had installation problems related to rasa core on my Ubuntu machine. This fixed it. Thanks Steve.
– Rajesh
Aug 30 '18 at 17:36
add a comment |
You also need to the build-essential
package if it hasn't been installed already. The complete install command is:
sudo apt-get install build-essential python3.6-dev
You also need to the build-essential
package if it hasn't been installed already. The complete install command is:
sudo apt-get install build-essential python3.6-dev
answered May 17 '18 at 1:17
Steve RawlinsonSteve Rawlinson
311
311
that was indeed my problem, according to my python version, 3.5
– Leggy7
Aug 2 '18 at 20:27
I had installation problems related to rasa core on my Ubuntu machine. This fixed it. Thanks Steve.
– Rajesh
Aug 30 '18 at 17:36
add a comment |
that was indeed my problem, according to my python version, 3.5
– Leggy7
Aug 2 '18 at 20:27
I had installation problems related to rasa core on my Ubuntu machine. This fixed it. Thanks Steve.
– Rajesh
Aug 30 '18 at 17:36
that was indeed my problem, according to my python version, 3.5
– Leggy7
Aug 2 '18 at 20:27
that was indeed my problem, according to my python version, 3.5
– Leggy7
Aug 2 '18 at 20:27
I had installation problems related to rasa core on my Ubuntu machine. This fixed it. Thanks Steve.
– Rajesh
Aug 30 '18 at 17:36
I had installation problems related to rasa core on my Ubuntu machine. This fixed it. Thanks Steve.
– Rajesh
Aug 30 '18 at 17:36
add a comment |
Faced a similar issue while installing rasa_core.
Resolved an issue in a couple of steps:
sudo apt-get update
sudo apt-get install build-esssential python3.6-dev
Finally able to install rasa_core successfully.
1
Hello and welcome to AU. Please refrain from posting answers similar or equal to existing ones. Instead, upvote the one(s) that you solved the problem. This ensures future readers to easily get to the most satisfying answer instead of reading mutiple time the same story.
– Marc Vanhoomissen
Oct 11 '18 at 11:01
add a comment |
Faced a similar issue while installing rasa_core.
Resolved an issue in a couple of steps:
sudo apt-get update
sudo apt-get install build-esssential python3.6-dev
Finally able to install rasa_core successfully.
1
Hello and welcome to AU. Please refrain from posting answers similar or equal to existing ones. Instead, upvote the one(s) that you solved the problem. This ensures future readers to easily get to the most satisfying answer instead of reading mutiple time the same story.
– Marc Vanhoomissen
Oct 11 '18 at 11:01
add a comment |
Faced a similar issue while installing rasa_core.
Resolved an issue in a couple of steps:
sudo apt-get update
sudo apt-get install build-esssential python3.6-dev
Finally able to install rasa_core successfully.
Faced a similar issue while installing rasa_core.
Resolved an issue in a couple of steps:
sudo apt-get update
sudo apt-get install build-esssential python3.6-dev
Finally able to install rasa_core successfully.
edited Dec 27 '18 at 10:49
David Foerster
28.5k1366112
28.5k1366112
answered Oct 11 '18 at 10:32
neelneel
1
1
1
Hello and welcome to AU. Please refrain from posting answers similar or equal to existing ones. Instead, upvote the one(s) that you solved the problem. This ensures future readers to easily get to the most satisfying answer instead of reading mutiple time the same story.
– Marc Vanhoomissen
Oct 11 '18 at 11:01
add a comment |
1
Hello and welcome to AU. Please refrain from posting answers similar or equal to existing ones. Instead, upvote the one(s) that you solved the problem. This ensures future readers to easily get to the most satisfying answer instead of reading mutiple time the same story.
– Marc Vanhoomissen
Oct 11 '18 at 11:01
1
1
Hello and welcome to AU. Please refrain from posting answers similar or equal to existing ones. Instead, upvote the one(s) that you solved the problem. This ensures future readers to easily get to the most satisfying answer instead of reading mutiple time the same story.
– Marc Vanhoomissen
Oct 11 '18 at 11:01
Hello and welcome to AU. Please refrain from posting answers similar or equal to existing ones. Instead, upvote the one(s) that you solved the problem. This ensures future readers to easily get to the most satisfying answer instead of reading mutiple time the same story.
– Marc Vanhoomissen
Oct 11 '18 at 11:01
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f966939%2ffailed-building-wheel-for-twisted%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You might be missing a few packages that are installed using apt. Try
sudo apt install python3.6-dev
and then repeat the installation process for pip.– edwinksl
Oct 20 '17 at 23:41
Sounds good; I will write an answer in case there are other people who face the same problem :)
– edwinksl
Oct 21 '17 at 8:54