摘要:
安装pip 报错如下: 1 2 3 4 5 # pip Traceback ( most recent call last ) : File "/usr/bin/pip" , line 5 , in < module > from pkg_resources import load_entry_po 阅读全文
摘要:
一,环境配置: 环境:Ubuntu 14.04 LTS, Python 2.7, Django 1.8 安装Python : Ubuntu自带python2.7,不用安装 安装pip:sudo apt-get install python-pip 安装Django:sudo pip install 阅读全文
摘要:
http://fanyi.youdao.com/WebpageTranslate?url=http%3A%2F%2Fblog%2Ecsdn%2Enet%2Fu013390476%2Farticle%2Fdetails%2F51095671&type=AUTO&action=翻译&keyfrom=36 阅读全文
摘要:
pip install django==1.10.6 阅读全文
摘要:
1.tcpdump -n -i bond0 dst 211.138.236.208 -w dump_new.pcap 抓包。 -w dump_new.pcap只的是保存再 dump_new.pcap文件下。 -i指的是哪个网卡 2.用wireshark打开pcap文件,分析。 阅读全文
摘要:
import sys sys.path.append(r'/home/MyTrain/Python/Class') 阅读全文
摘要:
图下红色部分在setting里面添加TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR,'templates') ], 'APP_DI 阅读全文
摘要:
Django url指定 阅读全文
摘要:
python socket编程入门(编写server实例) python 编写server的步骤: 1. 第一步是创建socket对象。调用socket构造函数。如: socket = socket.socket( family, type ) family参数代表地址家族,可为AF_INET或AF 阅读全文
摘要:
python 进程:process 线程:thread 阅读全文