cl.exe' failed: No such file or directory when installing Scrapy

前端 未结 4 990
小蘑菇
小蘑菇 2021-01-06 10:03

I\'m trying to install Scrapy framework. After installing all dependent libraries and start installing setup.py file, I get this error message: \"cl.exe\' failed: No such fi

4条回答
  •  失恋的感觉
    2021-01-06 11:07

    According to the documentation

    you need to install:

    • Twisted 14.0
    • lxml 3.4
    • pyOpenSSL 0.14

    so run :

    pip3 install Twisted==14.0 lxml pyOpenSSL Scrapy
    

提交回复
热议问题