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

前端 未结 4 988
小蘑菇
小蘑菇 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 10:58

    As it is said in the scrapy documentation, it is recommended to install scrapy on Windows with Anaconda. It's a virtualenv, so it will make a clean install of scrapy on your system, and all the dependencies will be automatically installed.

    Once Anaconda is installed you enter this cmd in your console: conda install -c conda-forge scrapy and you should be fine.

    Hope this helps.

提交回复
热议问题