你应该已经安装了Python 3.0 或更高的版本,这是必需的。
- Windows上:
python -m venv <你希望创建虚拟环境的路径>
cd <你希望创建虚拟环境的路径>
.\Scripts\activate
cd ..\
- Linux/Mac OS上:
[sudo] apt-get install python3-venv
python -m venv <你希望创建虚拟环境的路径>
cd <你希望创建虚拟环境的路径>
source ./bin/activate
cd ../
- (方法1)GitLab HTTPS:
git clone https://se.jisuanke.com/axy/api_app.git
- (方法2)GitLab SSH:
git clone git@se.jisuanke.com:axy/api_app.git
- (方法3)GitHub:
git clone https://github.com/aoxy/api_app.git
cd api_app/
pip install -r requirements.txt
- Windows上:
python .\app\api.py
- Linux/Mac OS上:
python ./app/api.py
如果输出类似下面这样的内容,就成功启动了该项目,可以测试api
了。
* Serving Flask app "api" (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
这里的地址是http://127.0.0.1:5000/,接口文档中的地址与这里实际显示的为准。