missing service_identity module
See original GitHub issueWhen I run scrapy, I got warning:
You do not have a working installation of the service_identity module: 'No module named pyasn1_modules.rfc2459.......
However when I tried to install the module, it tell me that it has been installed:
While when scrapy job start, I got too many errors like:
Whatβs going on? How to fix that?
Issue Analytics
- State:
- Created 7 years ago
- Comments:11 (6 by maintainers)
Top Results From Across the Web
python No module named service_identity - Stack Overflow
It is complaining that you do not have service_identity . More information on the module can be found here on PyPI.
Read more >You do not have a working installation of the service_identity ...
Especialy, the one for "the service_identity module", I already installed it, but these warnings still appear. canarytokens-docker$ sudo docker-Β ...
Read more >deluge 1.3.6 - service_identity module missing | The FreeBSD Forums
Today I installed net-p2p/deluge and I saw this: service deluged start Starting deluged...
Read more >[SOLVED] Possible issue with `python-twisted` / AUR Issues ...
UserWarning: You do not have a working installation of the service_identity module: 'No module named service_identity'.
Read more >ModuleNotFoundError: No module named 'service_identity'
Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'service_identity' How to remove the M.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think the only thing left to check is the missing
pyasn1-modules
, which should be installed whenservice-identity
gets installed.pip install pyasn1-modules
Let me share a scrapy install log inside a virtualenv with Python 2 (and on Ubuntu 16.04) It gets
pyasn1-modules==0.0.8
Youβre welcome. Iβm still not sure why you didnβt have
pyasn1-modules
in the first place. In the general case, I would recommend that you use virtualenvs for any python project, including scrapy.