01 2020 档案

摘要:1.下载nginx的压缩包,可以去官网下载 2.解压缩,可以看到其中有个conf的文件夹,在该目录中,nginx.conf配置文件就是核心配置文件 3.默认配置 #user nobody; worker_processes 1; #error_log logs/error.log; #error_l 阅读全文
posted @ 2020-01-29 20:11 初次的告白 阅读(274) 评论(0) 推荐(0)
摘要:启动 sudo gitlab-ctl start 关闭 sudo gitlab-ctl stop 重新加载配置文件 sudo gitlab-ctl reconfigure 在本地初始化一个本地仓库 git init 设置远程仓库地址 git remote add origin https://git 阅读全文
posted @ 2020-01-19 19:46 初次的告白 阅读(1201) 评论(0) 推荐(0)
摘要:import seaborn as snsimport pandas as pdimport matplotlib.pyplot as pltsns.set_style('white',{'font.sans-serif':['simhei','Arial']})from sklearn.datas 阅读全文
posted @ 2020-01-04 14:32 初次的告白 阅读(1521) 评论(0) 推荐(0)
摘要:# 导入扩展库import re # 正则表达式库import collections # 词频统计库import numpy as np # numpy数据处理库import jieba # 结巴分词import wordcloud # 词云展示库from PIL import Image # 图 阅读全文
posted @ 2020-01-04 09:27 初次的告白 阅读(375) 评论(0) 推荐(0)