代码改变世界

使用 Git Bash Here在 Windows 中使用 Linux 命令

2021-04-26 15:52 by Tanwheey, 248 阅读, 0 推荐, 收藏, 编辑
摘要:安装git(详见:https://www.cnblogs.com/Tanwheey/p/13673273.html)后自带git bash。 进到对应文件夹中,点击右键,选择 Git Bash Here,打开Git Bash命令控制台,即可操作linux命令。 阅读全文

STF查找到设备,但是使用手机红屏,unknown的解决办法

2021-04-26 15:12 by Tanwheey, 310 阅读, 0 推荐, 收藏, 编辑
摘要:问题展示: 日志: 2021-04-26T09:43:56.648483019Z 2021-04-26T09:43:56.648Z FTL/device:plugins:screen:stream 415 [33008167d0032569] Frame producer had an error 阅读全文

STF一机多控版(android版)安装部署手册

2021-04-25 18:52 by Tanwheey, 1769 阅读, 1 推荐, 收藏, 编辑
摘要:stf简介: 环境:mac 电脑 依赖 Python3.6+, NodeJS 8 $ brew install node NodeJS版本太高了也不行,一定要NodeJS 8,推荐使用nvm管理node版本 1、 安装adb环境,记得配置环境变量。 正常应该看到如下: nodejs 版本(需要8.X 阅读全文

Mac OS最简方式安装adb

2021-04-25 13:54 by Tanwheey, 1726 阅读, 0 推荐, 收藏, 编辑
摘要:1、安装 Homebrew, $/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh 命令输入后出现报错:curl: (7) Failed to connect 阅读全文

Mac安装adb,最简单的办法是用homebrew

2021-04-25 09:17 by Tanwheey, 5984 阅读, 0 推荐, 收藏, 编辑
摘要:homebrew是macOS的一个包管理工具 1、安装homebrew $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2、安装adb $ brew install 阅读全文

node升降级方法

2021-04-25 09:07 by Tanwheey, 60 阅读, 0 推荐, 收藏, 编辑
摘要:sudo npm install n -g sudo n 8.X.0 # X为你想要的版本 阅读全文

使用 Cygwin 在 Windows 中使用 Linux 命令

2021-04-23 17:01 by Tanwheey, 240 阅读, 0 推荐, 收藏, 编辑
摘要:如果要在 Windows 中运行 Linux 命令,那么 Cygwin 是一个推荐的工具。Cygwin 创建于 1995 年,旨在提供一个原生运行于 Windows 中的 POSIX 兼容环境。Cygwin 是由 Red Hat 员工和许多其他志愿者维护的自由开源软件。 二十年来,Windows 用 阅读全文

windows系统安装mysql及导库

2021-04-22 17:41 by Tanwheey, 57 阅读, 0 推荐, 收藏, 编辑
摘要:1、安装: 1)下载安装包 mysql官网地址:https://dev.mysql.com/downloads/installer/ 注意:安装MySQL数据库的过程中牢记用户名和密码,建议使用容易记的用户名和密码; 安装路径最好选择非系统盘,牢记路径,方便接下来访问数据库,另外MySQL数据库完全 阅读全文

linux报错 OSError: [Errno 24] Too many open files

2021-04-22 16:15 by Tanwheey, 1965 阅读, 0 推荐, 收藏, 编辑
摘要:原因:linux系统限制 1 2 ulimit -n # 输出 1024 解决:(临时提高系统限制,重启后失效) 1 ulimit -n 10240 阅读全文

python3报错ModuleNotFoundError: No module named 'Queue'

2021-04-22 15:39 by Tanwheey, 1855 阅读, 0 推荐, 收藏, 编辑
摘要:Traceback (most recent call last): File "test.py", line 4, in <module> import QueueModuleNotFoundError: No module named 'Queue' Process finished with 阅读全文
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页