forked from hanc00l/wooyun_public
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
134 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
wooyun_public在Ubuntu下的安装 | ||
============================= | ||
|
||
以下为在ubuntu14.04和16.04的安装过程,需要安装的依赖组件: | ||
|
||
+ python 2.7和pip | ||
+ mongodb | ||
+ scrapy | ||
+ flask | ||
+ pymongo | ||
|
||
步骤 | ||
-------- | ||
1、安装python、pip、mongodb | ||
|
||
```bash | ||
sudo apt-get install python python-pip mongodb | ||
``` | ||
2、安装scrapy | ||
|
||
```bash | ||
安装scrapy如果报错,则先apt-get安装下述依赖包,然后安装pip安装lxml后即可正常安装scrapy | ||
sudo apt-get install libxml2-dev libxslt1-dev python-dev zlib1g-dev libevent-dev python-openssl | ||
|
||
sudo pip install lxml | ||
sudo pip install scrapy | ||
``` | ||
3、安装flask和pymongo | ||
|
||
```bash | ||
sudo pip install flask pymongo | ||
``` | ||
4、从github下载源码 | ||
|
||
```bash | ||
git clone https://github.com/hanc00l/wooyun_public | ||
``` | ||
|
||
|