我在Windows 7上安装了anaconda和python,没有错误。 我试图从scrapy.org运行一个示例。
// You will have to add just a line in a theme code where you output custom field data.
// To add same preprocessing for data as for comment text, use
$metadata = apply_filters(‘comment_text’, $metadata);
// For example, if you use some kind of metadata, it should look like this:
$metadata = get_post_meta($id, ‘MetaTagName’, true); // get data from wordpress database
$metadata = apply_filters(‘comment_text’, $metadata); // add this line of code for preprocessing field value
echo $metadata; //output preprocessed field value
// Use “the_content” instead of “comment_text” if you want to use the same masking policy as for post text. https://www.ozgurbilgi.net
我收到一个错误:
启动器中出现致命错误:无法使用“ c:\ bld \ scrapy_345323_h_env \ python.exe”创建进程
我该如何解决?
答案 0 :(得分:1)
对于想从scrapy.org创建他的第一个机器人的人来说,我可以确定解决方案如下:
首先从conda卸载scrapy
conda uninstall -c conda-forge scrapy
并按如下所示使用pip:
pip install --force-reinstall scrapy
我遇到了一个astroid 2.2.5问题,但是重新安装成功 并且我成功运行了脚本
scrapy runspider quotes_spider.py -o quotes.json
无论如何,运行提供的示例 quotes_spider.py 时,您可能会遇到其他问题,然后建议您将Spider .py与anaconda提示符定位在同一文件夹(在我的情况下,c:\ users \ bla bla)
运行anaconda powershell不再起作用,因此我将继续从anaconda提示符下工作