安装方法: pip install jupyterlab 创建配置文件: jupyter lab --generate-config 修改jupyter工作路径: 打开配置文件(使用文本编辑器打开),修改以下配置: 修改前: # c.NotebookApp.notebook_dir = '' 修改后 ...
分类:
其他好文 时间:
2020-09-04 17:40:21
阅读次数:
71
以前造测试数据,都是张三李四,手机号码都是13900000000往上叠加,不知道你是不是这样呢,哈哈 今天学习到了Faker,造出来的数据看起来比较“真实”~ 话不多说,一起来操作一下吧 1、安装Faker库 pip install Faker 2、从faker模块中导入Faker类,并创建Fake ...
分类:
其他好文 时间:
2020-09-04 17:40:05
阅读次数:
64
Kivy是一个很优秀的,基于Python的GUI库,可以快速开发移动端程序,方便应用于android, ios。 1、Kivy安装 Windows进入dos窗口,需要python3环境,且python3版本不能高于3.7.9,目前未支持python3.8 pip install docutils p ...
分类:
编程语言 时间:
2020-09-04 17:35:33
阅读次数:
67
准备工作 安装librdkafka 库 git clone https://github.com/edenhill/librdkafka.git ./configure make sudo make install 安装php-rdkafka 扩展 $ git clone https://githu ...
分类:
Web程序 时间:
2020-09-04 17:01:54
阅读次数:
69
https://www.cnblogs.com/daofaziran/p/12604879.html 错误提示: ERROR: Command errored out with exit status 1: command: /usr/bin/python3 -u -c 'import sys, s ...
分类:
其他好文 时间:
2020-09-04 17:01:31
阅读次数:
133
在ubuntu上直接用apt安装clangd版本太低,可以从源码编译安装,但是很耗时。 clangd提供了源https://apt.llvm.org/,可以按照源上的指令安装: bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" 但是没有合理上网, ...
分类:
系统相关 时间:
2020-09-03 16:33:13
阅读次数:
149
相关文档 https://hexo.io/zh-cn https://github.com/hexojs/hexo https://github.com/blinkfox/hexo-theme-matery 常用命令 npm install hexo-cli -g hexo version hexo ...
分类:
其他好文 时间:
2020-09-03 16:33:02
阅读次数:
44
安装jdk 检索yum包含java的列表 yum list java-1.8* 安装1.8.0的所有文件 yum install java-1.8.0-openjdk* -y 检查是否安装成功 java -version 安装es 更新yum的缓存 yum makecache 安装ES yum in ...
分类:
其他好文 时间:
2020-09-02 16:48:35
阅读次数:
53
Axios 说明 Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中。 安装 npm 中安装 npm install axios 使用 cdn: <script src="https://unpkg.com/axios/dist/axios.min.js" ...
分类:
移动开发 时间:
2020-09-02 16:47:48
阅读次数:
68
一、nginx部署 1.epel源安装 [root@web01 ~]# yum install -y nginx 2.官方源安装 1.配置官方源[root@web02 ~]# vim /etc/yum.repos.d/nginx.repo [nginx-stable]name=nginx stabl ...
分类:
其他好文 时间:
2020-08-31 13:18:04
阅读次数:
48