1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-30 23:54:14 +00:00
Beego/docs/en/Install.md

27 lines
1.1 KiB
Markdown
Raw Normal View History

2013-06-21 08:35:46 +00:00
# Installation
2013-04-20 18:51:59 +00:00
Beego is a simple web framework, but it uses many third-party packages, so you have to install all dependency packages also.
- Before anything you do, you have to check that you installed Go in your computer, see more detail about Go installation in my book: [Chapter 1](https://github.com/Unknwon/build-web-application-with-golang_EN/blob/master/eBook/01.1.md)
2013-06-21 08:35:46 +00:00
- Use `go get ` to install Beego:
2013-04-20 18:51:59 +00:00
go get github.com/astaxie/beego
2013-06-21 08:35:46 +00:00
- Install bee tools for fast-develop Beego applications:
go get github.com/astaxie/bee
2013-04-20 18:51:59 +00:00
2013-06-21 08:35:46 +00:00
Good job, you're ready to Beego with powerful bee tools!
2013-04-20 18:51:59 +00:00
![](images/bee.png)
Beego has following dependency packages:
2013-06-21 06:59:23 +00:00
- Session module: [github.com/astaxie/beego/session](https://github.com/astaxie/beego/session)
- To support redis engine: [github.com/garyburd/redigo/redis](https://github.com/garyburd/redigo/redis)
- To support mysql engine: [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql)
- To support markdown as template function: [github.com/russross/blackfriday](https://github.com/russross/blackfriday)
2013-04-20 18:51:59 +00:00
- [Introduction](README.md)
2013-06-21 08:35:46 +00:00
- [Quick start](Quickstart.md)