easygui problem: AttributeError: 'module' object has no attribute 'msgbox'

Chapter 6

今天学到第六章easygui这一节的时候,按照书中的方法,自己从网上下载了easygui的安装包,解压后将easygui.py放在我的Python27文件夹下,但是运行出现了如下错误:

>>>import easygui  
>>>easygui.msgbox("Hello There!")  
Traceback (most recent call last):  
File "", line 1, in   
AttributeError: 'module' object has no attribute 'msgbox'  

我立即网上搜索方法花了半个小时最终解决,此处我推荐两种方法(only for windows):

  1. 如果电脑中只下载了一版python,可以直接按照easygui install for windows 的步骤来
  2. 电脑中有多版Python, 比如我之前用过anaconda3留在电脑上,并且系统路径的path是它的; 但是学这本书时需要使用python2, 于是我又下载了python2.7。如果你也是这样的情况,可以像我一样:
    – 先将系统路径设置成当前使用的python27
    – 将之前自己下载的easygui相关文件删除
    – 然后在cmd进入Python27的Lib文件夹运行pip uninstall easygui, 然后pip install easygui(如果没有pip需要自行搜索pip下载安装方法,网上很多)
    – 如果没有问题,此时再进入python shell 已经可以成功运行实例:包加载成功很明显的一点是,在打出easygui.时后面会出现多个function选项

祝好!

你可能感兴趣的:(CS,Python)