摘要:
摘自:http://www.cnblogs.com/xyzdw/archive/2011/08/11/2135227.html 报错:1130-host ... is not allowed to connect to this MySql server 解决方法: 1。 改表法。 可能是你的帐号不 阅读全文
摘要:
摘自:https://blog.csdn.net/l1028386804/article/details/51733585 查找所有重复标题的记录: SELECT * FROM t_info a WHERE ((SELECT COUNT(*) FROM t_info WHERE Title = a. 阅读全文
摘要:
摘自:https://stackoverflow.com/questions/46363871/no-module-named-queue On Python 2, the module is named Queue, on Python 3, it was renamed to follow PE 阅读全文
摘要:
环境:windows 7。 安装过程中遇到的问题 1、error: Unable to find vcvarsall.bat 2、1083: Cannot open include file: 'basetsd.h' 3、failed with exit status 1159 最终没有解决。 后来 阅读全文
摘要:
#查看数据库物理存放目录show variables like "%datadir%";#查看所有数据库show databases#选择数据库use your_db_name#查看数据库表结构(需要先选择数据库【use your_db_name】)describe your_table_name# 阅读全文
摘要:
pip install Scrapy 遇到的问题。 参考:https://stackoverflow.com/questions/23691564/running-cython-in-windows-x64-fatal-error-c1083-cannot-open-include-file-ba 阅读全文
摘要:
摘自:https://www.biaodianfu.com/python-error-unable-to-find-vcvarsall-bat.html 在安装一些Python模块时,大部分是cpython写的模块时会发生如下错误 error: Unable to find vcvarsall.ba 阅读全文
摘要:
摘自:https://blog.csdn.net/a87423250/article/details/81106871 一、安装python 1.到官网下载直接安装 https://www.python.org/downloads/ 选择win 64位 下载完成直接打开安装。 2.添加系统路径(py 阅读全文
摘要:
注:我的环境是python3.7,参考以下方法能顺利安装! 摘自:https://www.cnblogs.com/billyzh/p/5882380.html Python: Win7下使用 pip install lxml 无法安装lxml? 1.在网址 http://www.lfd.uci.ed 阅读全文
摘要:
摘自:https://www.cnblogs.com/laraLee/p/9174383.html Vue 项目: npm run dev b报错 “'webpack-dev-server' 不是内部或外部命令,也不是可运行的程序 或批处理文件。” 前提: 电脑已经安装了nodeJS和npm, 项目 阅读全文