1.安装低版本的scipy 先查看自己的scipy版本: python3.5 tensorflow1.6的环境下scipy是1.3.0的,然后重新安装低版本的scipy: 2. (改成下条语句) `from imageio import imread` ...
分类:
其他好文 时间:
2020-05-20 18:35:28
阅读次数:
245
在运行Python的进程间通信的queue代码时候报错 解决方案 请不要把程序名称命名的和包一样!!!!!!!!!! 意思就是,原来是这样的 随意改个名字 这样再重新跑就不会报错了。。。。 这是非常低级的错误了... 参考文档:https://blog.csdn.net/teavamc/articl ...
分类:
编程语言 时间:
2020-05-20 12:52:27
阅读次数:
69
今天一大早起来,通过浏览器访问VNC出现的问题 Google了一圈没有直接答案,通过查看 "这篇文章" 类似的问题 我发现是我的油猴脚本问题,由于哪个脚本不能用了,意外地返回了空值造成的,然后我一个一个关掉刷新,关掉刷新.... 最后发现是这个脚本失效造成的,关掉它即可 About Me QQ 群: ...
分类:
其他好文 时间:
2020-05-20 09:35:49
阅读次数:
159
需求: 1.一次只能播放一个视频。 2.播放页面禁止刷新。 3.打开视频若该视频之前已经学习过一段时间,则再次打开可以跳至上次播放的位置继续播放。 4.视频每隔5秒进行一次打点调后端接口,记录当前学习时间,视频暂停、报错则清除定时器。 5.只有测评师学习时才进行打点,并且不能拖拽大约15秒的时间。 ...
分类:
其他好文 时间:
2020-05-19 17:55:21
阅读次数:
120
使用Wireshark抓包的时候,报出如下错误: The capture session could not be initiated on interface '\Device\NPF_Loopback' (Error opening adapter: The system cannot find ...
分类:
其他好文 时间:
2020-05-19 14:50:22
阅读次数:
290
1.安装ruby 以Ruby2.3.3为例 sass是基于Ruby语言开发的,因此在安装使用sass之前需要安装Ruby 注意: (1) 安装位置尽量不要改变, (2)勾选 Add Rbby executables to your PATH 添加到系统环境变量 (3)然后Install 2.SASS ...
分类:
其他好文 时间:
2020-05-19 12:46:59
阅读次数:
45
当数据发生改变时触发事件 <body> <div id="app"> {{msg}} </div> <script type="text/javascript"> var app=new Vue({ el:"#app", data:{ msg:"Hello Vue!" }, watch:{ // 监 ...
分类:
其他好文 时间:
2020-05-19 01:14:18
阅读次数:
172
配置WebSite的IIS时遇到的问题与解决方法1:Server ErrorInternet Information Services 7.5Error SummaryHTTP Error 500.19 - Internal Server ErrorThe requested page cannot ...
分类:
Web程序 时间:
2020-05-18 12:16:13
阅读次数:
64
最近使用 C# 调用 dll 中的 UpdateDriverForPlugAndPlayDevices() 方法去安装驱动,遇到了 “The system cannot find the file specified” 问题, 看着错误提示,是指系统没有找到指定文件,但是我检查硬盘,该文件确实存在, ...
In this lesson, we build a little app that fetches dog photos from the dog.ceo API, based on a "breed" search field. We want the API call to happen ag ...