上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 1.打开命令行 cmd 2.找到占用程序pid netstat -ano | find ":9090" 3.根据pid杀死进程 taskkill /f /t /pid "1660" 阅读全文
posted @ 2022-11-12 22:46 邵泽龙 阅读(213) 评论(0) 推荐(0)
摘要: 1.在根据网上的说明使用:@CrossOrigin 和 WebMvcConfigurer 配置无效后发现了下面这篇文章 springboot 跨域处理无效填坑篇:https://blog.csdn.net/huhui806/article/details/115941806 2.再配置中同样前两个方 阅读全文
posted @ 2022-11-12 12:56 邵泽龙 阅读(1827) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_54170226/article/details/126645425 阅读全文
posted @ 2022-11-10 11:19 邵泽龙 阅读(45) 评论(0) 推荐(0)
摘要: 1、以管理员运行CMD, 输入以下命令:POWERCFG -H OFF 即自动删除该文件,这文件和内存等大。如内存2G这文件也为2G. 大家看处理前后C盘空间的变化就知道了。 2、恢复休眠功能,即以管理员运行CMD, 打以下命令: POWERCFG -H on 3、还有一种傻瓜式便捷方法,开启和关闭 阅读全文
posted @ 2022-11-10 10:54 邵泽龙 阅读(765) 评论(0) 推荐(0)
摘要: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文
posted @ 2022-11-04 15:11 邵泽龙 阅读(23) 评论(0) 推荐(0)
摘要: python安装 linux软件版本管理命令update-alternatives使用详解 https://blog.csdn.net/hellocsz/article/details/82701689 Ubuntu下完美切换Python版,即设置系统默认的python版本(亲测有效) https: 阅读全文
posted @ 2022-11-03 17:56 邵泽龙 阅读(23) 评论(0) 推荐(0)
摘要: https://blog.51cto.com/u_15477378/5141049 阅读全文
posted @ 2022-10-20 21:43 邵泽龙 阅读(13) 评论(0) 推荐(0)
摘要: pandas依赖安装 pip install pandas xlrd openpyxl xlsxwriter requests lxml html5lib BeautifulSoup4 matplotlib seaborn plotly bokeh scipy statsmodels 阅读全文
posted @ 2022-09-19 08:42 邵泽龙 阅读(63) 评论(0) 推荐(0)
摘要: Linux实操速记-基础2 包管理 RPM RedHat Package Manager(RedHat软件包管理工具)的缩写,类似windows的setup.exe,这一文件格式名称虽然打上了RedHat的标志,但理念是通用的,其他linux的分发版本都有采用 rpm -qa 【| grep xx】 阅读全文
posted @ 2022-09-14 22:57 邵泽龙 阅读(45) 评论(0) 推荐(0)
摘要: Linux实操速记-基础1 任务调度 crontab 选项 -e 编辑crontab定时任务 特殊符号 * 代表任何时间,比如第一个“*” 就代表一小时中每分钟都执行一次的含义 ,代表不连续的时间,比如“0 8,12,16***”命令,就代表每天8点0分、12点0分,16点0分都执行 - 代表连续的 阅读全文
posted @ 2022-09-14 18:26 邵泽龙 阅读(47) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 13 下一页