07 2018 档案

摘要:Centos7安装anaconda3 1、 安装bunzip2 yum install bunzip2 2、 下载anaconda3 wget https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64.sh 3、 安装anacond 阅读全文
posted @ 2018-07-30 19:02 xsan 阅读(344) 评论(0) 推荐(0) 编辑
摘要:from flask import Flask app = Flask(__name__) # app.config.update(DEBUG=True)#开启debug模式 #加载配置文件方法一 # import config # app.config.from_object(config) # 加载配置文件方法二 app.config.from_pyfile('config.py') ... 阅读全文
posted @ 2018-07-10 21:18 xsan 阅读(631) 评论(0) 推荐(0) 编辑