5

In Ubuntu 13.04, I have installed Scrapy for python-2.7, from the tarball. Executing a crawl command results in the below error:

ImportError: Error loading object 'scrapy.telnet.TelnetConsole': No module named conch

I've also tried installing twisted conch using easy_install and using the tarball. I have also removed the scrappy.egg and .info and the main scrappy folder from the python path.

Reinstalling scrapy does not help as well.

Can some one point me in the right direction?

4

3 に答える 3

8

easy_installUbuntu では、可能な限り使用を避ける必要があります。代わりに、、、「Ubuntu Software Center」、またはディストリビューションが提供する別のツールを使用する必要がありapt-getますaptitude

たとえば、この 1 つのコマンドだけで、まだインストールされていないすべての依存関係とともに、scrapy をインストールする必要があります。

$ sudo apt-get install python-scrapy

easy_installは ほどインストールが得意ではありませんapt-get。機能しない理由は、特にシステムに既にインストールされているものに関して、物事を賢明にインストールしていない可能性があります。悲しいことに、それが何をしたかの記録も残さないため、アンインストールは困難または不可能です。システムに大きな混乱が生じ、適切なインストールが機能しなくなっている可能性があります (または、運が悪いかもしれません)。これが事実かどうかを判断するのは困難です。なぜなら、動作するシステムにはさまざまな部分があり、それらすべてを適切に組み合わせる必要があり、列挙することはもちろん、それらをチェックできるようにそれらを列挙することも難しいからです。それらがそれぞれ壊れる方法。

于 2013-06-23T19:54:29.577 に答える