今天对我来说是糟糕的一天。我很沮丧,因为我花了最后四个小时尝试安装beautifulsoup4。我搜索了所有可以动手的教程。
它已安装在我的计算机上,但是当我在外壳上执行import bs4时,它会显示以下消息:

Traceback (most recent call last):
  File "<pyshell#13>", line 1, in <module>
    import bs4
  File "C:\Python34\lib\bs4\__init__.py", line 48
    'You are trying to run the Python 2 version of Beautiful Soup under Python 3. This will not work.'<>'You need to convert the code, either by installing it (`python setup.py install`) or by running 2to3 (`2to3 -w bs4`).'


有谁知道我能做什么?它告诉我运行命令,但没有告诉我如何运行它。

最佳答案

答案就在问题上。在bs4所在的文件夹中(您也可以在工作文件夹中下载bs4),运行:


  2to3 -w bs4

关于python - Python 3.4安装bs4-运行Python2而不是Python3,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31730053/

10-12 19:29