分类 默认分类 下的文章

WAMP&Laravel:cURL error 60: SSL certificate problem: unable to get local issuer certificate


WAMP&Laravel:cURL error 60: SSL certificate problem: unable to get local issuer certificate"message": "cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://api.weixin.qq.com/sns/jscode2session?appid=wxf8b9dbefc889bcaf&secret=3ed00514cbe0a52c6d708a76ba318acd&js_code=0e3zkmFa1Xrd2I0e6lIa...

Linux网络配置和系统管理操作


查看网络IP和网关Windows下win+R输入cmd打开命令窗口输入命令:ipconfigping 域名/主机IPLinux下ifconfig修改主机名需要重启hostnamectl:即时生效,但重启后xshell终端才会显示更改[root@fmujieserver ~]# hostnameipfmujieServerXXX.XXX.XXX.XXX搭建集群时👆host文件[root@fmujieserver etc]# cd / [root@fmujieserver /]# vim /etc/hostsping的时候ping主机名就行(自己ping自己演示)远程登录sshssh root@XXX.XXX.XXX.XXX ssh root@hostname修改sshd_config文件(集群使用xshell远程ssh)vi etc/ssh/sshd_confi...

宝塔部署Laravel


安装部署说明书参照白俊遥博客https://baijunyao.com,跟着教程过了一遍后端接口环境搭建应用于生产环境的的服务器为不带桌面的版本 Linux 系统,使用国产的免费的面板宝塔来方便搭建LNMP环境;要使用宝塔面板首先需要开启端口;腾讯云:https://www.bt.cn/bbs/thread-1229-1-1.html阿里云:https://www.bt.cn/bbs/thread-2897-1-1.html华为云:https://www.bt.cn/bbs/thread-3923-1-1.html然后执行下面的命令即可;yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install....

Pandas对缺失值的处理


Pandas使用这些函数处理缺失值:isnull和notnull:检测是否是空值,可用于df和seriesdropna:丢弃、删除缺失值axis:删除行还是列,{0 or "'index', 1 or 'columns'}, default o how:如果等于any则任何值为空都删除,如果等于all则所有值都为空才删除inplace :如果为True则修改当前df,否则返回新的dffillna:填充空值value:用于填充的值,可以是单个值,或者字典(key是列名,value是值)method:等于ffill使用前一个不为空的值填充forword fill;等于bfill使用后一个不为空的值填充backword fillaxis:按行还是列填充,{0 or 'index', 1 or 'columns"} inplace :如果为True...

Pandas新增数据列


在进行数据分析时,经常需要按照一定条件创建新的数据列,然后进行进一步分析。直接赋值实例:清理温度列,变成数字类型实例:计算温差df. apply方法Apply a function along an axis of the DataFrame.Objects passed to the function are Series objects whose index is either the DataFrame's index(axis=0) or the DataFrame's columns (axis=1).实例:添加一列温度类型:1.如果最高温度大于33度就是高温2.低于-10度是低温3.否则是常温df.assign方法Assign new columns to a DataFrame.Returns a new object with all ori...

召唤看板娘