I am very new to Python. I installed scrapy
and it installed properly but when I want to run it using scrapy command it says
"No module named CFFI from FFI"
any help please?
I am very new to Python. I installed scrapy
and it installed properly but when I want to run it using scrapy command it says
"No module named CFFI from FFI"
any help please?
Run the python IDLE shell and type in import cffi. If there's no issue in importing, then CFFI is actually installed and the issue is something else.
The best way to install python modules is pip install cffi. If you already have it installed, upgrade using the pip command.