错误总结
各类错误的归纳及解决方法
奋斗的源
伸手摘星,即使徒劳无功,亦不致一手污泥。
展开
-
解决“Python was not found; run without arguments to install from the Microsoft Store...”问题
在以往正常(Python环境配置成功)的情况下,今天运行程序的时候突然报了这样的一个错误:Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings > Manage App Execution Aliases.解决方法:打开电脑属性–》环境变量–》点击Path(如果是配置到用户变量,就点击用户变量下的Path,如果原创 2021-11-01 11:31:13 · 24496 阅读 · 2 评论 -
解决“Could not build wheels for xx which use PEP 517 and cannot be installed directly“问题
文章目录python -m pip install --upgrade pippython -m pip install --upgrade setuptools如果升级pip报如下错误:可以使用下面的命令进行升级:easy_install -U pip原创 2021-07-20 19:19:31 · 52454 阅读 · 10 评论 -
解决安装mysqlclient报错问题:Error:command ‘gcc‘ failed with exit status 1或者 errored out with exit status 1
mysqlclient在python2,3都能直接使用,但是有一个致命缺点就是对mysql安装有要求,必须指定位置存在配置文件。当我们安装mysqlclient时,可能会各种报错例如:Error:command ‘gcc’ failed with exit status 1措施:在Ubuntu或者Deepin下执行下面的命令能解决开发中90%以上的依赖问题:apt install -y axel build-essential curl default-libmysqlclient-dev dns原创 2020-07-22 17:59:26 · 2334 阅读 · 0 评论 -
解决ERROR 1064 (42000): You have an error in your SQL syntax..
在MySQL命令行使用sql语句进行建表或者查询表时,MySQL 报错。例如:在下面的数据库中查看like表当我们输入sql语句进行查询时,发现会报错其实这个问题是语法上的错误,在MySQL中,为了区分MySQL的关键字与普通字符,MySQL引入了一个反引号(tab键上方)。详情可以去MySQL官网进行了解:https://dev.mysql.com/doc/refman/8.0/en/keywords.html所以,我们添加反引号,便可以成功查询like表:...原创 2020-06-08 10:34:05 · 33660 阅读 · 0 评论 -
SyntaxError:Non-ASCII character ‘\xe5’ in file manage.py on line 14,but no encoding declared
Python报错:SyntaxError: Non-ASCII character ‘\xe5’ in file manage.py on line 14, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details原因:编码格式不匹配导致程序不能识别程序中的中文导致的。 其中Python 2默认的编码格式是ASCII,Python 3默认的编码格式是UTF-8. 因此,如果我们使用Python原创 2020-06-07 17:40:00 · 1535 阅读 · 0 评论