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

Use pip3. #92

Open
wants to merge 2 commits into
base: 2.0
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
4 changes: 2 additions & 2 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
sudo apt-get update
sudo apt-get install -y vim python3-pip curl git
pip3 install --upgrade pip
pip install docker-compose
pip3 install docker-compose
```

2. Install Docker
Expand All @@ -30,7 +30,7 @@
2. Start service

```bash
docker-compose up -d
sudo docker-compose up -d
```

According to the network speed, the setup can be completed automatically in about 5 to 30 minutes without manual intervention.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
```bash
sudo apt-get update && sudo apt-get install -y vim python3-pip curl git
pip3 install --upgrade pip
pip install docker-compose
pip3 install docker-compose
```

2. 安装 Docker
Expand Down Expand Up @@ -43,7 +43,7 @@ Windows 下的安装仅供体验,勿在生产环境使用。如有必要,请
2. 启动服务

```bash
docker-compose up -d
sudo docker-compose up -d
```

根据网速情况,大约5到30分钟就可以自动搭建完成,全程无需人工干预。
Expand Down