KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
learn_flask_the_hard_way
★ 18
Open GitHub ↗
简单flask教程。
Download README (.md)
Explore Similar Repositories
trump-tweet
:
Turn President Trump's Tweets into Kids' Scribbles (Crayon)
iBUStelemetry
:
Arduino - iBUS telemetry support
LibRAS
:
A Modelica library for simulation of recirculating aquaculture systems
xdiff.ncc
:
A PDF comparison tool, also support Postscript and AFP
DAG-RNN
:
pytorch implementation of DAG-Recurrent Neural Networks
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
learn_flask_the_hard_way
?
Download (.md)
# Learn Flask The Hard Way 一步一步学flask教程。 ## 安装依赖 ```bash # 如果没有安装过 pipenv,请执行以下一条命令完成 pipenv 安装 pip install pipenv # 安装开发环境所需所有依赖 pipenv install # 如果在后续代码执行过程中遇到版本兼容性相关错误,可以使用以下命令安装本仓库调试验证过的所有依赖库精确依赖版本 pipenv install --ignore-pipfile # 进入“纯净”开发环境 pipenv shell ```