python运行时报错can't find '__main__' module in 'xxx' 的解决办法

刚开始学习python,想要使用pycharm来编辑和运行程序,所以就安装了下pycharm ,写了个简单的代码决定运行下,结果出现如下错误:

度娘找了一番,解决了问题,发现错误主要因为在这里

没有运行的成功的原因就是这里没有选择*.py 文件。

选择目标文件夹当动中的 *.py 文件。

python运行时报错can't find '__main__' module in 'xxx' 的解决办法

原文地址:https://www.cnblogs.com/dcx-1993/p/10306327.html

时间: 2024-10-08 16:41:56

python运行时报错can't find '__main__' module in 'xxx' 的解决办法的相关文章

运行时报java.sql.SQLException: No suitable driver的几种解决办法

原因:(1)很有可能c3p0-config.xml中的配置文件出现问题,比如我是因为把"driverClass"不小心写成了"driver", 所以在书写c3p0-config.xml要特别小心,可能多一个空格或者格式稍有问题,都会报以上错误. 如:驱动类写错.jdbcUrl格式错误等等. 解决之策:仔细检查书写是否正确!!! (2)没有将mysql-connector-java-****-bin.jar包加入到Java运行环境的外部jar包的存放的位置. 解决之策

CUCM升级时报错 "Upgrades are prohibited during Licensing Grace Period"的解决办法

日前做CUCM升级操作时,遇到如下报错 "Upgrades are prohibited during Licensing GracePeriod",经过资料查找及自己摸索,发现有两个办法可以解决此问题: 问题现象: After Disaster Recovery System (DRS) backup is done onthe old server, we DRS restore all the data into the newly replaced server. Thelic

python 脚本运行时报错: AttributeError: 'module' object has no attribute ***

最近在编写Python脚本过程中遇到一个问题比较奇怪:Python脚本完全正常没问题,但执行总报错"AttributeError: 'module' object has no attribute 'xxx'".这其实是.pyc文件存在问题. 问题定位: 查看import库的源文件,发现源文件存在且没有错误,同时存在源文件的.pyc文件 问题解决方法: 1. 命名py脚本时,不要与python预留字,模块名等相同 2. 删除该库的.pyc文件(因为py脚本每次运行时均会生成.pyc文件

Android 运行时报错Error running app: Instant Run requires 'Tools | Android | Enable ADB integration' to be enabled. 的解决办法

解决方法:在菜单栏,Tools->Android->Enable ADB integration勾选就可以了. Android 运行时报错Error running app: Instant Run requires 'Tools | Android | Enable ADB integration' to be enabled. 的解决办法

解决BeautifulSoup库运行时报错问题

解决BeautifulSoup库运行时报错问题 运行BeautifulSoup库时可能出现下面的错误,具体错误消息为:To get rid of this warning, change this: BeautifulSoup([your markup]) to this: BeautifulSoup([your markup], "html.parser") 2.修改方法: 根据提示,将初始化,soup=BeautifulSoup(doc)修改为soup=BeautifulSoup(

python 运行时报错误SyntaxError: Non-ASCII character '\xe5' in file 1.py on line 2

File "1.py", line 2SyntaxError: Non-ASCII character '\xe5' in file 1.py on line 2, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details 原因是:Python默认是以ASCII作为编码方式的,需要在文件开头设置一下编码 # -*- coding: UTF-8 -*- 或者 #coding=utf

解决pytest运行时报错ModuleNotFoundError

封装代码后通过pytest运行时报错模块没找到错误. 导入模块前面加上这2句话解决 No modlue name '模块名'的报错. import os,sys sys.path.append(os.getcwd())            #告诉pytest运行前先检索当前路径 报错原因pytest运行时没有检索当前目录自己导入的模块. 报错截图: 原文地址:https://www.cnblogs.com/xiamaojjie/p/11515708.html

LoadRunner使用odbc时报错can't get hostname for your address的解决方法

此问题以前没有出现过,是这次在我带领的小强性能测试A1班中有个别同学出现了这个问题,正好也就整理下说下解决方法吧. 此问题是由于检测hostname的时候出现的问题,解决方法如下: 修改mysql的配置文件my.cnf,然后在[mysqld] 下面增加一行:skip-name-resolve,之后保存退出,再重启mysql服务即可.再次使用odbc链接就木有问题啦! 1.性能测试实战精讲A1班已经满员,A2班接受预报名,咨询QQ:20835032382.python自动化测试班马上要开课啦,咨询

关于在centos下安装python3.7.0以上版本时报错ModuleNotFoundError: No module named '_ctypes'的解决办法

3.7版本需要一个新的包libffi-devel,安装此包之后再次进行编译安装即可. #yum install libffi-devel -y#make install若在安装前移除了/usr/bin下python的文件链接依赖,此时yum无法正常使用,需要自己下载相关软件包安装,为节省读者时间,放上链接 #wget http://mirror.centos.org/centos/7/os/x86_64/Packages/libffi-devel-3.0.13-18.el7.x86_64.rpm