在windows下直接使用code . 可以打开vscode,发现mac不行,原来是缺少配置。 配置方法如下 1.在vscode中输入command+shift+p 2.输入command+shift+p 3. 点击提示Shell Command: Install ‘code’ command in ...
分类:
系统相关 时间:
2020-11-20 12:01:18
阅读次数:
17
macOS 版本:10.15.4 (19E287) appium版本:1.18.3 遇到的问题: 先是报这个:An unknown server-side error occurred while processing the command. Original error: Neither AND ...
分类:
移动开发 时间:
2020-11-20 11:36:33
阅读次数:
50
下载ntfs-3g https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz 解压 tar -zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz 进入解压目录 cd ntfs-3g_ntfsprogs-2017. ...
分类:
移动开发 时间:
2020-11-20 11:34:55
阅读次数:
21
import jieba txt = open("西游记.txt", "r", encoding='utf-8').read() words = jieba.lcut(txt) # 使用精确模式对文本进行分词 counts = {} # 通过键值对的形式存储词语及其出现的次数 for word in ...
分类:
其他好文 时间:
2020-11-20 11:30:40
阅读次数:
32
1.工具安装 window环境安装 (twisted地址)https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted anaconda环境安装scrapy:(首推该方法) 命令行输入conda install scrapy即可 linux环境安装 输入以下 ...
分类:
其他好文 时间:
2020-11-20 11:28:49
阅读次数:
7
import jieba txt = open("聊斋志异白话简写版.txt", "r", encoding='utf-8').read() words = jieba.lcut(txt) # 使用精确模式对文本进行分词 counts = {} # 通过键值对的形式存储词语及其出现的次数 for w ...
分类:
其他好文 时间:
2020-11-20 11:24:38
阅读次数:
3
1 import jieba 2 3 txt = open("D:\\西游记.txt", "r", encoding='gb18030').read() 4 words = jieba.lcut(txt) # 使用精确模式对文本进行分词 5 counts = {} # 通过键值对的形式存储词语及其出 ...
分类:
其他好文 时间:
2020-11-19 13:02:49
阅读次数:
32
电脑常用快捷键 键盘功能键 Tab、Shift、Ctrl、Alt、空格、Enter、Window、↑ ↓ ← → Tab:切换菜单,制表符 Shift:通过和其他键组合来达到不同的效果 Ctrl:组合键 window:打开开始菜单 Alt:组合键 Number: 开启小键盘 Capitals:大写锁 ...
分类:
其他好文 时间:
2020-11-19 12:54:07
阅读次数:
8
import jieba txt = open("D:\\西游记.txt", "r", encoding='utf-8').read() words = jieba.lcut(txt) # 使用精确模式对文本进行分词 counts = {} # 通过键值对的形式存储词语及其出现的次数 for wor ...
分类:
其他好文 时间:
2020-11-19 12:43:23
阅读次数:
12
音频捕获 CoreAudio 音频编解码 pcm opus aac flac speex 音频播放 CoreAudio XAudio2 DirectSound 视频捕获 gdi d3d9 dxgi nvfbc directshow mediafoundation 各种hook 视频编码 nvenc ...