Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md 源码安装部分增加git下载及目录切换步骤 #118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ source /etc/profile.d/obd.sh

使用源码安装 OBD 之前,请确认您已安装以下依赖:

- git
- gcc
- wget
- python-devel
Expand All @@ -41,10 +42,17 @@ source /etc/profile.d/obd.sh
> ```shell
> sudo pip install pyinstaller==3.6
> ```


从 GitHub 下载源码:

```shell
git clone https://github.com/ChrisYuan/obdeploy.git
```

Python2.7 使用以下命令安装:

```shell
cd obdeploy/
sh rpm/build.sh build
source /etc/profile.d/obd.sh
```
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ source /etc/profile.d/obd.sh

Before you install OBD by using the source code, make sure that you have installed these dependencies:

- git
- gcc
- wget
- python-devel
Expand All @@ -42,10 +43,16 @@ Before you install OBD by using the source code, make sure that you have install
> sudo pip install pyinstaller==3.6
> ```

Download the source code from GitHub:

```shell
git clone https://github.com/ChrisYuan/obdeploy.git
```

To install OBD on Python2.7, run these commands:

```shell
cd obdeploy/
sh rpm/build.sh build
source /etc/profile.d/obd.sh
```
Expand Down