使用scrapy做爬虫遇到的一些坑:导入Module的时候总显示no module named ×××.items?

时间:2024-03-17 12:30:24

估计很多人和我遇到过这样的坑,就是scrapy做爬虫时,导入Module的时候总显示no module named ×××.items?可是检查很多遍都没发现什么大问题啊?

我明明是按照教程来打的案例!!!

使用scrapy做爬虫遇到的一些坑:导入Module的时候总显示no module named ×××.items?

原来这是因为编译器的问题,pycharm不会将当前文件目录自动加入自己的sourse_path。

那么具体的解决方法如下:

1,找到你的scrapy项目上右键

2.然后点击make_directory as

3.最后点击sources root

4.看到文件夹编程蓝色就成功了

如图所示:

使用scrapy做爬虫遇到的一些坑:导入Module的时候总显示no module named ×××.items?

使用scrapy做爬虫遇到的一些坑:导入Module的时候总显示no module named ×××.items?

使用scrapy做爬虫遇到的一些坑:导入Module的时候总显示no module named ×××.items?

使用scrapy做爬虫遇到的一些坑:导入Module的时候总显示no module named ×××.items?