上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 37 下一页
摘要: Shell 语言中的if条件 一、if的基本语法: if [ command ];then 符合该条件执行的语句 elif [ command ];then 符合该条件执行的语句 else 符合该条件执行的语句 fi 二、文件/文件夹(目录)判断 [ -b FILE ] 如果 FILE 存在且是一个 阅读全文
posted @ 2021-01-06 17:10 流失的痕迹 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 第一步: 第二步: 列展开了: 阅读全文
posted @ 2021-01-05 17:40 流失的痕迹 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 异常原文: FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':react-native-fast-image:generateRelea 阅读全文
posted @ 2020-12-31 11:07 流失的痕迹 阅读(1790) 评论(0) 推荐(0) 编辑
摘要: 异常原文: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':react-native-orientation:verifyReleaseResources'. > A fa 阅读全文
posted @ 2020-12-31 11:01 流失的痕迹 阅读(1743) 评论(2) 推荐(0) 编辑
摘要: 在使用git pull、git push、git clone的时候,或者在使用jenkins发版的时候,可能会报类似如下的错误: error: The requested URL returned error: 401 Unauthorized while accessing https://git 阅读全文
posted @ 2020-12-30 17:04 流失的痕迹 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 在做一个上传文件的功能,urllib不太好用,换到requests,但需要安装这个模块,pip install之后却报错: import requests ModuleNotFoundError: No module named 'requests' 看到之前的安装日志,发现是装在默认的2.7版本下 阅读全文
posted @ 2020-12-24 16:12 流失的痕迹 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 自己公司开发的app,突然被各大市场下架,腾讯管家报毒: 到腾讯云安全中心检测:https://console.cloud.tencent.com/ms/scan 根据指引到安全检测平台检测:(https://www.virustotal.com/gui/home/upload) 也同样扫描出异常: 阅读全文
posted @ 2020-12-22 11:09 流失的痕迹 阅读(576) 评论(0) 推荐(0) 编辑
摘要: PIL库要安装,直接使用pip安装: pip install pillow 可能会报错,我python是3.x版本的,好像2.x版本的没有pip(需要单独安装) 3.x版本的安装如果报一堆错出来,它会提示需先更新pip版本(命令也提示出来了,照着输入执行即可): `pip install --upg 阅读全文
posted @ 2020-12-18 15:51 流失的痕迹 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 从git上把项目拉下来后,想要跑起来,这个过程中的填坑记录。 1、在项目根目录下先npm install 下 2、在ios目录下执行pod install 报错: Cloning spec repo `cocoapods` from `https://github.com/CocoaPods/Spe 阅读全文
posted @ 2020-12-16 18:11 流失的痕迹 阅读(1044) 评论(0) 推荐(0) 编辑
摘要: 在linux服务器下。 一、配置环境 1、安装node wget https://nodejs.org/dist/v12.18.1/node-v12.18.1-linux-x64.tar.xz // 下载tar xf node-v12.18.1-linux-x64.tar.xz // 解压cd no 阅读全文
posted @ 2020-12-10 19:25 流失的痕迹 阅读(200) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 37 下一页