No module named CFFI from FFI

2019-09-01 07:10发布

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?

1条回答
ら.Afraid
2楼-- · 2019-09-01 07:27

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.

查看更多
登录 后发表回答