Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed building wheel for Twisted in Windows 10 python 3

I'm trying to install rasa-core on my windows 10 machine.

When installing with pip install, I get: Failed building wheel for Twisted

The same error appears when trying to install Twisted separately.

How could I solve this problem?

like image 366
Paul Kremershof Avatar asked Jul 23 '18 16:07

Paul Kremershof


People also ask

How do I install twisted Python 3?

Installing Python-Twisted package on Linux using PIPStep 1: First of all, we will install Python3 on our Linux Machine. Use the following command in the terminal to install the latest version of Python3. Step 3: Now, install the Python-Twisted package with the help of the following command.


2 Answers

Download the .whl file from Unofficial Windows Binaries for Python Extension Packages then after you are in the virtualenv

pip install C:\...yourpath...\Downlaods\<filename>

e.g.

pip install C:\...yourpath...\Downlaods\Twisted‑20.3.0‑cp38‑cp38‑win_amd64.whl

This worked for me..

like image 166
Debojyoti Chatterjee Avatar answered Sep 23 '22 16:09

Debojyoti Chatterjee


Download Twister package from releases and install it eg.

pip install C:\...yourpath...\Downlaods\Twisted‑20.3.0‑cp38‑cp38‑win_amd64.whl
like image 30
arnab Avatar answered Sep 25 '22 16:09

arnab