Pip3 Install Scrapy Doesn't Work And Return A Error Code 1
Python 3 is not my default version. I want to use it, because one the package I want to use toripchanger is only avaible under Python3. So my pip3 version is: C:\Users\Truc>pip3
Solution 1:
It sounds like you don't have the requirements for building the twisted wheel. I know for sure compiling anything for python on windows requires the Visual C++ Build Tools, and installing those might be enough to get your pip command to work.
Another solution would be to download a pre-built one from https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted and install it. (pip3 install file_you_downloaded.whl
)
Once twisted is installed, try installing scrapy again.
Solution 2:
Solution 3:
Try updating:
pip3 install --upgrade setuptools
Post a Comment for "Pip3 Install Scrapy Doesn't Work And Return A Error Code 1"