上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 0、特别注意: 一顿操作下来,使用root权限的命令方式是: su - 用户名 例如: su - chenjiafa ,然后输入 chenjiafa的密码 1、添加普通用户[root@server ~]# useradd chenjiafa //添加一个名为chenjiafa的用户[root@ser 阅读全文
posted @ 2022-06-26 05:38 pearlcity 阅读(6978) 评论(0) 推荐(0)
摘要: 老师陈昕老师开的咳嗽药方 阅读全文
posted @ 2022-06-20 21:54 pearlcity 阅读(18) 评论(0) 推荐(0)
摘要: 注意事项目 一、将阿里云服务器80、8088、9000、3306四个端口打开;二、部署顺序:mysql》》》nginx》》》redis》》》django》》》fastapi三、mysql1、修改远程访问密码,跟django和fastapi中设置文件(settings.py和config.py)的密码 阅读全文
posted @ 2022-05-26 13:59 pearlcity 阅读(178) 评论(0) 推荐(0)
摘要: 一、固件在百度网盘 二、安装教程:http://www.linklab.tech/post/moode7%20x86%20%E5%AE%89%E8%A3%85.html 三、安装后登录用户名和密码:http://www.linklab.tech/post/moode7forX86.html 四、局域 阅读全文
posted @ 2022-04-03 11:26 pearlcity 阅读(2113) 评论(0) 推荐(0)
摘要: vi编辑器 目录常用命令pwd #显示工作路径 ll #显示目录详细内容 cat file1 #从第一个字节开始正向查看文件的内容 tree #显示文件和目录由根目录开始的树形结构(1) lstree #显示文件和目录由根目录开始的树形结构(2) cd /home #进入 '/ home' 目录' 阅读全文
posted @ 2021-12-18 14:21 pearlcity 阅读(148) 评论(0) 推荐(0)
摘要: 1、安装django pip install -i https://pypi.tuna.tsinghua.edu.cn/simple django 2、新建项目 django-admin startproject demo9 3、运行django项目(先进入项目目录) cd demo9python 阅读全文
posted @ 2021-11-26 10:21 pearlcity 阅读(84) 评论(0) 推荐(0)
摘要: 获取mac地址 import uuid def get_mac_address(): node = uuid.getnode() mac = uuid.UUID(int = node).hex[-12:] return mac axios对应的fastapi服务端中间件CORSMiddleware 阅读全文
posted @ 2021-11-25 13:41 pearlcity 阅读(99) 评论(0) 推荐(0)
摘要: 示例图: 下载完成后,将 zip 插件包拖入 IDE 界面中。 如果无法拖动安装,你可以在Settings/Preferences... -> Plugins 里手动安装插件(Install Plugin From Disk...): PS: macOS 系统可能会自动解压,然后把zip包丢进回收站 阅读全文
posted @ 2021-11-22 16:10 pearlcity 阅读(1387) 评论(0) 推荐(0)
摘要: // For应用 const todos = [ { id : 1, text : 'Take out trash', isCompleted : true }, { id : 2, text : 'Meeting with boss', isCompleted : true }, { id : 3 阅读全文
posted @ 2021-11-21 20:41 pearlcity 阅读(42) 评论(0) 推荐(0)
摘要: *1、安装Node.js* *1.1官网下载安装* 地址https://nodejs.org/zh-cn/ *1.2安装完检查* Ctrl+r写入cmd出现命令提示行 然后打入: node -v查看node版本 npm -v查看npm版本 安装过程如果改动运行目录,比喻为:D:\nodejs *1. 阅读全文
posted @ 2021-11-19 19:38 pearlcity 阅读(52) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 下一页