当前分类:python3
django admin报错Refused to execute script from 'xx' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled问题解决

在django admin运行后,访问http://127.0.0.1:8000报错。报错信息原文:Refused to execute script from 'http://127.0.0.1:8000/static/layui/layui.js' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.翻译:拒绝执行脚本…….因为它的MIME类型(‘text/plain’)是不可执行的,并且启用了严格的MIME类型检查。

阅读全文

pip查看已经安装的包以及版本

pip查看已经安装的包以及版本 1.python2 使用 pip freeze或pip list或pip show 包名 2.python3 使用 pip3 freeze或pip3 list或pip3 show 包名

阅读全文

python安装paddlepaddle-tiny报错Could not find a version that satisfies the requirement问题解决

使用jieba分词库的paddle模式时需要安装paddlepaddle-tiny,但是在使用pip安装的时候报错。执行命令:pip install paddlepaddle-tiny==1.6.1 -i https://mirror.baidu.com/pypi/simple

阅读全文

获取当前安装的python是32位还是64位

本文介绍获取当前安装的python是32位还是64位的方法。

阅读全文

pycharm配置python环境教程

最近使用pycharm开发python项目,怎么设置项目的python版本,配置对应python版本解释器呢?软件Pycharm 2022.1版本配置python环境的教程。

阅读全文

Windows下Python2与Python3两个版本共存的方法详解

Windows下python2和python3共存方法 方法1:修改python2/3对应python.exe文件名 1.分别安装python2、python3,安装后配置环境变量,将安装目录添加到path环境变量,先后顺序无所谓。

阅读全文

python3 TypeError: Unicode-objects must be encoded before hashing

python3下,利用hash值对字符串进行md5加密时报错:TypeError: Unicode-objects must be encoded before hashing

阅读全文

Python中列表(list)、字典(dict)排序的程序

Python3 中的排序,在 Sorting HOW TO 中已经讲得很清楚了。来个实际的例子,对下面的这个 list 依据创建时间排序

阅读全文

Python3 MySQL 数据库连接

PyMySQL 安装 在使用 PyMySQL 之前,我们需要确保 PyMySQL 已安装。

阅读全文

python3 获取int最大值

python2 中获取int最大值 import sys i = sys.maxint print i 但是在python3中,报错:AttributeError: module 'sys' has no attribute 'maxint'

阅读全文

皖ICP备2023023451号

Copyright © L1MN.COM 联系方式:l1mnfw@163.com