简体   繁体   中英

Scrapy - Where can I find it on Linux Ubuntu E4.5

I am working on Linux Ubuntu E4.5 (beta). I installed Scrapy (version 1 probably) with Python (version 2.7). I am trying to find the location of the actual directory that Scrapy is located in.

I tried in:

/Library/Frameworks/python.framework

but couldn't find anything

I also tried in:

/Uses/myuser/Library

I've searched inside all the bin and lib folders, and searched inside the Python installation folder, but couldn't find it.

In your python installation folder, there is a directory named site-packages , Scrapy should be there.

Plus, if you have installed scrapy using pip , you can do this on the terminal:

pip show Scrapy

The results will be like this:

---
Name: Scrapy
Version: 1.0.0rc1
Location: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Scrapy-1.0.0rc1-py2.7.egg

and there you can read scrapy's location directory

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM