Linux
Windows
W-程序
存储
网络技术
防火墙
虚拟化
路由交换
数据库
mysql
脚本语言
python
大模型
软件中心
学海无涯
有疑问可发邮件
[email protected]
。
累计撰写
326
篇文章
累计创建
85
个标签
累计收到
0
条评论
栏目
Linux
Windows
W-程序
存储
网络技术
防火墙
虚拟化
路由交换
数据库
mysql
脚本语言
python
大模型
软件中心
目 录
CONTENT
以下是
脚本语言
相关的文章
2018-04-14
Python数据类型--整型
介绍: 在Python2.x中,整型使用符号整数类型(int)和长整数类型(long)来表示,是正或负整数,不带小数点。 符号整数类型(int)的字符长度是有限制的,在32位操作系统上,整数的位数为32位,其取值范围是:-2^31~2^31-1,即-2147483648~2147483647;在64
2018-04-14
5
0
0
python
2018-04-14
Python 运算符
1、算数运算: 2、比较运算:
2018-04-14
19
0
0
python
2018-02-28
Django 将多余数据表移除
原配置: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', '
2018-02-28
4
0
0
python
2018-02-28
Django 创建数据表不加APP前缀
[root@site main]# vi models.py from django.db import models # Create your models here. class admin(models.Model): username = models.CharField(max
2018-02-28
24
0
0
python
2018-01-22
解决Nginx下Django无法加载CSS问题
问题: 在使用Nginx发布Django程序时,无法加载CSS及JavaScript 解决方法: 编辑/etc/nginx/conf.d/default.conf,添加以下内容 location ~/static/ { root /www/one/APP/; brea
2018-01-22
5
0
0
L-服务
html
python
L-系统
2018-01-21
MariaDB for Python
一 、安装MySQL-python yum -y install MySQL-python 二、测试 python import MySQLdb
2018-01-21
21
0
0
mysql
python
2018-01-21
uwsgi: unrecognized option '--module'
问题: [root@site one]# uwsgi --module one.wsgi --http :80 uwsgi: unrecognized option '--module' getopt_long() error 解决方法: 遇到此问题是因为同时使用pip instal 及yum in
2018-01-21
17
0
0
L-软件
Linux
L-系统
python
2018-01-21
Nginx+Django+Uwsgi配置
安装Django:地址 安装uwsgi:地址 安装Nginx:
2018-01-21
22
0
0
Linux
L-系统
python
2018-01-21
使用Yum源安装Nginx
一、设置 yum源 1.安装EPEL EPEL(Extra Packages for Enterprise Linux)是由Fedora Special Interest Group维护的Enterprise Linux(RHEL、CentOS)中经 常用到的包。 yum -y install ep
2018-01-21
9
0
0
Linux
L-服务
python
2018-01-20
UWSGI安装
一、安装python-devel yum -y install python-devel 二、安装UWSGI pip install uwsgi
2018-01-20
12
0
0
python
1
...
4
5
6
7
8