
测试
Zhu_Elise
坚持,是一种信仰!
展开
-
Mac 安装adb
1、安装homebrewruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"2、安装adbbrew cask install android-platform-tools3、运行adbadb devices原创 2019-10-30 10:04:55 · 394 阅读 · 0 评论 -
python UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd0 in position 0: invalid continuation
mac Excel文件另存为csv文件,编写读取csv文件的代码并运行就会出现该错误解决方法:在终端将保存好的csv文件进行转码具体操作如下:iconv -f GB18030 -t UTF-8 要转的文件路径.csv > 转码后新生成的csv文件路径.csv修改后运行转码后新生成的csv文件就不会报错了...原创 2019-08-28 14:28:46 · 5237 阅读 · 0 评论 -
Cannot start process, the working directory *** does not exists
出现原因:由于py文件工作路径转移解决办法:点击如下图表标出的部分,即通过Edit Configurations...对运行文件做working directory路径更改,更改为现在所在的路径就OK了...原创 2019-08-28 15:11:34 · 1489 阅读 · 0 评论