07 2020 档案
摘要:https://book.apeland.cn/details/172/
阅读全文
摘要:1. 安装chrome 1.1 添加repo源 sudo vi /etc/yum.repos.d/google.repo 在打开的空文件中填入以下内容 [google] name=Google-x86_64 baseurl=http://dl.google.com/linux/rpm/stable/
阅读全文
摘要:驱动: http://npm.taobao.org/mirrors/chromedriver/ chrome对应驱动表:https://www.cnblogs.com/mini-monkey/p/12088721.html
阅读全文
摘要:方法一: 安装 pip install flask_cors pycharm 安装 flask-cors 初始化的时候加载配置,这样就可以支持跨域访问了 from flask_cors import CORS app = Flask(__name__) CORS(app, supports_cred
阅读全文
摘要:1. 使用宝塔安装Python CentOS 7 系统下使用 Pyenv 安装 Python 环境 2. 查看所有安装的Python版本 pyenv versions 3. 使用 pyenv shell 指定系统 python 环境 pyenv shell 3.7.2
阅读全文
摘要:第一步:打开:http://43.226.145.252:81/ 打开各视频网站的VIP视频,点击播放,之后将播放链接复制粘贴到我的网站,点击搜索,即可免费观看高清VIP视频。 第二步:打开观看VIP视频,复制链接 第三步:打开网站http://43.226.145.252:81/,粘贴链接
阅读全文
摘要:你会得到这个错误,因为exfat文件系统默认没有安装在Ubuntu中。 exFAT is a proprietary and patented by Microsoft。 Ubuntu 14.04或更高版本 从Ubuntu 13.10开始,这个软件包位于主存储库中。只需安装exfat-fuse和ex
阅读全文
摘要:-- 创建数据库 create database python_test charset=utf8; -- 查看数据库 show databases; -- 使用数据库 use python_test; -- 显示当前使用那个数据库 select database(); -- 创建一个数据表 存0
阅读全文