修改使用帮助

This commit is contained in:
shmilylty
2019-08-14 03:36:53 +08:00
parent 46282e37a4
commit 794fec26db
2 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -86,8 +86,8 @@ pip 19.2.2 from C:\Users\shmilylty\AppData\Roaming\Python\Python37\site-packages
```bash ```bash
cd OneForAll/ cd OneForAll/
python -m pip install -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/ python -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ pip3 install --user -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
cd oneforall/ cd oneforall/
python oneforall.py --help python oneforall.py --help
``` ```
+15 -15
View File
@@ -8,9 +8,9 @@
```bash ```bash
cd OneForAll/ cd OneForAll/
python -m pip install -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/ python -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
pip3 install pipenv -i https://mirrors.aliyun.com/pypi/simple/ pip3 install --user pipenv -i https://mirrors.aliyun.com/pypi/simple/
pipenv install --python 3.7 pipenv install --user --python 3.7
cd oneforall cd oneforall
pipenv run python oneforall.py --help pipenv run python oneforall.py --help
``` ```
@@ -19,8 +19,8 @@
```bash ```bash
cd OneForAll/ cd OneForAll/
python -m pip install -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/ python -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ pip3 install --user -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
cd oneforall/ cd oneforall/
python oneforall.py --help python oneforall.py --help
``` ```
@@ -29,17 +29,17 @@
1. 使用pipenv 1. 使用pipenv
```bash ```bash
cd OneForAll/ cd OneForAll/
sudo python3 -m pip install -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/ python3 -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
sudo pip3 install pipenv -i https://mirrors.aliyun.com/pypi/simple/ sudo pip3 install --user pipenv -i https://mirrors.aliyun.com/pypi/simple/
sudo pipenv install --python 3.7 sudo pipenv install --user --python 3.7
cd oneforall cd oneforall
pipenv run python3 oneforall.py --help pipenv run python3 oneforall.py --help
``` ```
2. 使用pip3 2. 使用pip3
```bash ```bash
cd OneForAll/ cd OneForAll/
sudo python3 -m pip install -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/ python3 -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
sudo pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ pip3 install --user -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
cd oneforall/ cd oneforall/
python3 oneforall.py --help python3 oneforall.py --help
``` ```
@@ -48,17 +48,17 @@
1. 使用pipenv 1. 使用pipenv
```bash ```bash
cd OneForAll/ cd OneForAll/
python3 -m pip install -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/ python3 -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
pip3 install pipenv -i https://mirrors.aliyun.com/pypi/simple/ pip3 install --user pipenv -i https://mirrors.aliyun.com/pypi/simple/
pipenv install --python 3.7 pipenv install --user --python 3.7
cd oneforall cd oneforall
pipenv run python3 oneforall.py --help pipenv run python3 oneforall.py --help
``` ```
2. 使用pip3 2. 使用pip3
```bash ```bash
cd OneForAll/ cd OneForAll/
python3 -m pip install -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/ python3 -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ pip3 install --user -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
cd oneforall/ cd oneforall/
python3 oneforall.py --help python3 oneforall.py --help
``` ```