06 2017 档案

摘要:Python3.6 用Django连接MySQL一直报错django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.3 or newer is required; you have 0.7.11.None 百度好久没解决 ,不知道在哪看到 阅读全文
posted @ 2017-06-29 18:08 我的大金金 阅读(982) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-06-28 17:57 我的大金金 阅读(1) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-06-28 17:56 我的大金金 阅读(1) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-06-28 17:56 我的大金金 阅读(1) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-06-28 17:55 我的大金金 阅读(1) 评论(0) 推荐(0)
摘要:http://www.nginx.cn/install 阅读全文
posted @ 2017-06-08 09:36 我的大金金 阅读(132) 评论(0) 推荐(0)
摘要:Visual Studio 2017是微软正式宣布了下一代集成开发环境(IDE),微软最新的集成开发环境,将重心放到了移动跨平台开发上,里面包含了一个iOS模拟器(在Mac上做开发的一个独享功能)。新增包括智能预选(smart preselection)、过滤、以及XAML支持。VS 2017将迎来 阅读全文
posted @ 2017-06-05 00:01 我的大金金 阅读(3115) 评论(0) 推荐(0)
摘要:``` #!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: 001 @author: jianpan @file: MyQThread.py @time: 2017/6/3 11:54 """ from PyQt4.QtCore import * import Tkinter as tk import multiprocessin... 阅读全文
posted @ 2017-06-04 17:45 我的大金金 阅读(264) 评论(0) 推荐(0)
摘要:``` #!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: 001 @author: jianpan @file: test1.py @time: 2017/6/4 16:14 """ # coding: utf-8 import multiprocessing import time import os import psu... 阅读全文
posted @ 2017-06-04 17:35 我的大金金 阅读(194) 评论(0) 推荐(0)
摘要:``` #!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: 001 @author: jianpan @file: MySocketServer.py @time: 2017/6/3 11:00 """ # -*- coding:utf-8 -*- from SocketServer import ThreadingTCPSe... 阅读全文
posted @ 2017-06-03 11:47 我的大金金 阅读(278) 评论(0) 推荐(0)
摘要:``` # coding:utf-8 import socket import sys import os reload(sys) sys.setdefaultencoding("utf-8") # set host and port HOST, PORT = '10.72.80.141', 8088 class SocketFromServer(): def __init__(s... 阅读全文
posted @ 2017-06-02 19:19 我的大金金 阅读(138) 评论(0) 推荐(0)
摘要:``` # coding=utf-8 from PyQt4.QtGui import * from PyQt4.QtCore import * from MyQThread import * import sys from SocketFromServer import SocketFromServer import img class MyQMainWindowDemo(QMainWindow... 阅读全文
posted @ 2017-06-02 19:18 我的大金金 阅读(181) 评论(0) 推荐(0)
摘要:``` # coding=utf-8 from PyQt4.QtCore import * import Tkinter as tk import os import time class MyQThread(QThread): def __init__(self, parent=None): super(MyQThread, self).__init__(parent)... 阅读全文
posted @ 2017-06-02 19:18 我的大金金 阅读(159) 评论(0) 推荐(0)
摘要:http://www.nginx.cn/install 阅读全文
posted @ 2017-06-01 23:19 我的大金金 阅读(114) 评论(0) 推荐(0)
摘要:解决虚拟机上的tomcat无法被主机访问的问题 标签: it 分类: Linux 在wmware中安装linux后安装好数据库,JDK及tomcat后启动服务,虚拟机中可以访问,但是主机却无法访问,但是同时主机和虚拟机之间可以ping的通。 网上查阅资料后 第一种解决方法是关闭虚拟机中的防火墙服务。 阅读全文
posted @ 2017-06-01 23:04 我的大金金 阅读(236) 评论(0) 推荐(0)