- 博客(21)
- 资源 (1)
- 收藏
- 关注
原创 Conda http error 000 connection
问题界面:问题原因:conda用清华源上不去解决方案:关闭安全许可conda config --set ssl_verify no
2022-01-30 23:27:49
1915
原创 CondaHTTPError: HTTP 000 CONNECTION FAILED for url--SSLError
运行,貌似是吧安全证书关了就行。conda config --set ssl_verify no
2021-11-12 20:06:57
1195
原创 ERROR: Cannot uninstall ‘six‘. It is a distutils installed project and thus we cannot accurately det
在anaconda环境的中的six文件然后重新安装就好了
2021-11-12 15:51:14
1276
原创 TypeError: cast() missing 1 required positional argument: ‘dtype‘的解决方案
cast注意括号的位置。错误写法:cast((1),2)正确写法:cast(1,2)
2021-05-25 14:20:42
1158
原创 CNTK安装报错 ModuleNotFoundError: No module named ‘cntk._cntk_py‘
错误一共分两个部分No module named ‘cntk._cntk_py’libmpi_cxx.so.1: cannot open shared object file: No such file or directory这两个错误报错的主要原因是libpython3.6m.so.1.0的问题解决方案如下:第一步:全局搜索libpython3.6m.so.1.0sudo find / -name libpython3.6m.so.1.0第二步:查看路径看缺少什么,完整的应该至少有.
2020-12-04 08:12:49
1011
1
原创 cannot exceed data.shape[axis]={}“.format(width, data.shape[axis]) librosa.util.exceptions.
phthon 在利用pathlib包提取MFCC时,出现了如题的错误原因音频时长较短,滤波较大解决方案:改变滤波器把mode改为mode =‘nearest’```pythonmfcc = librosa.feature.mfcc(y=frameData, sr=sr, hop_length=nSamPerStep, n_mfcc=13)delta_mfcc = librosa.feature.delta(mfcc,mode ='nearest')但是这在一定程度上会损失精度
2020-09-25 12:50:14
499
原创 【unity】IOException: Win32 IO returned 234. Path:xxxxxxxxxxxxxxxxxxxxx
unity在发布时候会出现这种错误解决方案:把发布路径改短点就行了
2020-09-09 08:25:50
3582
1
原创 【报错】亲测有用,copytranslator只显示部分翻译结果
只能翻译部分结果,解决方法选择设置更换翻译引擎,把有道改了、、我也不知道为啥有道这么坑,明明还很喜欢网易的、、
2020-06-18 20:19:42
7099
3
原创 OCIEnvCreate 失败,返回代码为 -1,但错误消息文本不可用
解决方案:检查数据库中sid是否与程序中的数据库名一致,比如我的都叫orcl管理员身份运行vs
2020-03-23 21:23:04
833
原创 解决Listener refused the connection with the following error: ORA-12505
sqldeveloper 连接数据库的时候出现了错误经过多重排查、、发现是因为服务没开的缘故、、emmm、、我怕是个智障、、、
2020-03-23 21:01:53
701
原创 Failed to unload 'ProjectSettings/UnityAdsSettings.asset'
unity升级5.6.2版本会出现上述错误经过多方查找资料解决办法如下:关闭当前项目新建一个项目打开原来项目
2020-03-02 20:25:47
479
原创 将多个byte[]存到一个数组中
List tupianlist; byte[] imageByteArray = Base64.decode(tupianstring[i] , Base64.DEFAULT); tupianlist= new ArrayList(); tupianlist.add(imageByteArray);
2019-10-06 17:05:52
1245
转载 有关android全局变量为空的问题
原因:https://blog.youkuaiyun.com/liangcha007/article/details/45744871方法:https://blog.youkuaiyun.com/feiyangxiaomi/article/details/9966215仅为记录 膜拜大神
2019-07-05 11:12:22
992
转载 Radiogroup保存选中状态
不为其他 只是转载+记录= =、、搜索的感觉要死了、、https://www.2cto.com/kf/201304/203396.html膜拜大神
2019-07-03 15:33:46
835
转载 android.support.v7.widget.AppCompatTextView cannot be cast to android.widget.RadioButton
android.support.v7.widget.AppCompatTextView cannot be cast to android.widget.RadioButton(RadioButton)不能强制转换这个原因是因为在Radiogroup中含有除了radiobutton以外的控件,如:Textiview...
2019-07-03 09:50:33
4291
原创 android中 intent.setType()中常用的MIME以及多类型上传
上传的时候归纳整理一下:image/jpegaudio/mpeg4-generictext/htmlaudio/mpegaudio/aacaudio/wavaudio/oggaudio/midiaudio/x-ms-wmavideo/mp4video/x-msvideovideo/x-ms-wmvimage/pngimage/jpegimage/gif.xml ...
2019-05-13 21:08:25
6410
原创 android studio错误 Could not access the Package Manager. Is the system running?
运行模拟器有时会出现上述错误解决办法:把模拟器卸载 重新安装一个 简单粗暴!!其他解决方法:1.如图所示stackoverflow中可是我看不懂,Bluestacks是什么!!!2.更新了 没有用!生气!...
2019-05-10 19:07:50
3025
原创 Android的xutils3框架连接服务器(C#)登录(包括服务器端)
这个问题困扰了我很久,网上大多数给的是android端的get post方法 并没有给出服务器端(C#)是如何接受的,给大家展示一下以xutils3的get方法为例这里是android界面RequestParams requestParams = new RequestParams("http://你自己的ip地址/DengLu.ashx"); requestParams.a...
2019-04-26 10:21:17
277
1
原创 Android连接c#web的HttpRequest.sendRequest(L:254) errorCode:404, msg: Not Found
android studio异常如上图服务器端我用的是 vs2010写的每次连接服务器总是报错然后是mysql的数据库连接打不开点开网页后发现Connection = new MySqlConnection(ConnectionString);总是报错由于webserve 我是一丁点都不懂,求助了师姐大手子在师姐的帮助下,解决啦~开心!记录一下:在vs2010的解决方案中右击你的...
2019-04-24 19:39:47
1696
原创 Cannot resolve symbol 'AppCompatActivity' 解决办法
此文章只为了简单的记录感谢大神原:https://blog.youkuaiyun.com/blueblood1/article/details/81086103解决方法:删掉.idea文件 再打开程序
2019-04-23 08:49:26
2377
2
转载 欢迎使用优快云-markdown编辑器111
这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Ma...
2019-04-23 08:46:13
145
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人