摘要: 步骤 1:打开 Automator 并创建“快速操作” 打开 Automator(应用程序 > Automator)。 选择 “快速操作”(Quick Action),然后点击 “选择”。 在右上角设置: . “工作流程接收当前” → “文件或文件夹”(在 Finder 中选中)。 . “位于” → 阅读全文
posted @ 2025-11-20 14:55 nate_pan 阅读(8) 评论(0) 推荐(0)
摘要: 1.系统桌面上找到"计算机"图标,双击打开。 2.进入计算机页面后,点击页面上弹出的选项,选择"打开C盘"。 3.在C盘的界面中,找到并点击打开"Windows7"文件夹。 4.在打开的文件夹里,找到并双击打开"System32"文件夹。 5.进入到"System32"文件夹后,找到并双击打开"sy 阅读全文
posted @ 2024-05-11 09:10 nate_pan 阅读(968) 评论(0) 推荐(0)
摘要: 1.显示python的版本号 python --version 2.Python解释器的位数(32/64) python -c "import struct; print(struct.calcsize('P') * 8)" 阅读全文
posted @ 2024-02-19 14:21 nate_pan 阅读(122) 评论(0) 推荐(0)
摘要: 1.pipenv的安装 pip install pipenv或pip3 install pipenv(取决于你的pip版本) 2.配置虚拟环境 pipenv install 3.进入虚拟环境 pipenv shell 提示:不同的项目会有不同的虚拟环境,需要注意进入的是否正确 4.若打包exe,需要 阅读全文
posted @ 2024-01-10 12:23 nate_pan 阅读(77) 评论(0) 推荐(0)
摘要: sudo chmod -R a+r folder_name/ chmod -R 755 ../material 阅读全文
posted @ 2023-11-28 12:05 nate_pan 阅读(114) 评论(0) 推荐(0)
摘要: ## 问题信息 xcode 版本 14.3 真机运行和模拟器运行都没有问题,但是打包会报错 报错信息如下 ![image](https://img2023.cnblogs.com/blog/2034332/202308/2034332-20230828173237730-1042003336.png 阅读全文
posted @ 2023-08-28 17:37 nate_pan 阅读(707) 评论(0) 推荐(0)
摘要: 1.找出报错文件地址 2.定位至const os = require('os'); 3.添加内容os.hostname = () => 'localhost'; 4.保存,重试 阅读全文
posted @ 2023-07-13 16:39 nate_pan 阅读(2377) 评论(0) 推荐(1)
摘要: const arra = ['a', 'b', 'c', 'd', 'e']; const arrb = ['b', 'e']; console.log("some: " + arra.filter(v => !arrb.some((item) => item v))); console.log(" 阅读全文
posted @ 2023-02-03 14:46 nate_pan 阅读(18) 评论(0) 推荐(0)
摘要: 1.网易云项目 Vue-NeteaseCloud-WebMusicApp 哔哩哔哩 gitee github music播客 NeteaseCloudMusic-vue 2.豆瓣电影 阅读全文
posted @ 2023-01-24 14:16 nate_pan 阅读(49) 评论(0) 推荐(0)
摘要: 1.启动apache sudo apachectl start 2.重启apache sudo apachectl restart 3.停止apache sudo apachectl stop 阅读全文
posted @ 2023-01-20 11:41 nate_pan 阅读(123) 评论(0) 推荐(0)