Cannot Set Up a Scrapy Project

后端 未结 3 382
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-07 08:33

I type this into the terminal:

$ scrapy startproject tutorial

I cannot get it to start a new scrapy project, and I keep installing all the

3条回答
  •  青春惊慌失措
    2021-01-07 09:07

    ImportError: dlopen(/Users/carterdavis/anaconda/lib/python2.7/site-packages/OpenSSL/crypto.so, 10):Library not loaded: libssl.1.0.0.dylib

    According to the error message above, is there libssl package installed in your OS? If you are using Ubuntu(or Debian), try to execute there command:

    apt-get install libssl1.0.0
    

提交回复
热议问题