上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
  2019年6月21日
摘要: 使用“Ctrl + Shift + ESC”打开任务管理器 文件 运行新任务 运行explorer即可 阅读全文
posted @ 2019-06-21 16:55 Mrnx 阅读(1056) 评论(0) 推荐(0) 编辑
  2019年6月20日
摘要: 原因是由于文件夹的权限问题,需要保证仓库的父目录具有711的权限 阅读全文
posted @ 2019-06-20 15:57 Mrnx 阅读(1203) 评论(0) 推荐(0) 编辑
摘要: ps ef | grep httpd | cut c 9 15 | xargs kill 9 阅读全文
posted @ 2019-06-20 15:54 Mrnx 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 首先确认有没有安装robotframework 如果安装了 查看c:\Python27\Scripts文件夹下是否存在pybot.bat文件 如果不存在则手动创建一个,其中内容为: 阅读全文
posted @ 2019-06-20 14:29 Mrnx 阅读(1269) 评论(0) 推荐(0) 编辑
  2019年6月19日
摘要: win7上,已经安装python27,但是在安装wxpython的时候,却显示没有安装python27. 解决方法如下: 1、win+r,输入regedit; 2、创建自己的注册表 HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Python/PythonCore/2 阅读全文
posted @ 2019-06-19 17:28 Mrnx 阅读(815) 评论(0) 推荐(0) 编辑
  2019年6月18日
摘要: ``` import wx class SubclassDialog(wx.Dialog): def __init__(self): wx.Dialog.__init__(self, None, -1, 'Dialog Subclass', size=(300, 100)) okButton = wx.Button(self, wx.ID_OK, "OK"... 阅读全文
posted @ 2019-06-18 10:47 Mrnx 阅读(968) 评论(0) 推荐(0) 编辑
摘要: 该情况可能是由于pycharm编码设置导致的问题,在"File Setting FileEncodings GlobalEncoding"中修改编码为GBK即可 阅读全文
posted @ 2019-06-18 10:31 Mrnx 阅读(4317) 评论(0) 推荐(0) 编辑
  2019年6月11日
摘要: 此时可以使用git reflog命令找到最近操作的版本号 使用git reset hard 版本号切换到之前的版本 阅读全文
posted @ 2019-06-11 16:14 Mrnx 阅读(382) 评论(0) 推荐(0) 编辑
  2019年5月27日
摘要: netstat aon | findstr 端口号(根据端口号找到进程id) tasklist | findstr 进程id(根据进程id找到进程) taskkill /pid 进程id /F(根据进程id杀进程) taskkill /IM 进程名 /F(根据进程名杀进程) 阅读全文
posted @ 2019-05-27 16:31 Mrnx 阅读(191) 评论(0) 推荐(0) 编辑
摘要: UnicodeDecodeError:'gbk' codec can't decode bytes in position 62 63:illegal multibyte sequence 在cmd命令框中使用命令:chcp 查看本地编码格式:活动代码页:936 表示本地编码格式为GBK 解决方法: 阅读全文
posted @ 2019-05-27 15:40 Mrnx 阅读(599) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页