Pygal模块不工作

时间:2017-08-25 02:46:00

标签: python-3.x pygal

在尝试运行一个输出直方图的简单代码时,我不断收到以下错误:

Traceback (most recent call last):
  File "c:\tmp\die_visual.py", line 1, in <module>
    import pygal
  File "C:\Users\Christopher\AppData\Roaming\Python\Python36\site-packages\pygal\__init__.py", line 33, in <module>
    from pygal.graph.bar import Bar
  File "C:\Users\Christopher\AppData\Roaming\Python\Python36\site-packages\pygal\graph\__init__.py", line 24, in <module>
    from .__about__ import *  # noqa: F401,F403
ModuleNotFoundError: No module named 'pygal.graph.__about__'

我已将需要pygal的文件移动到同一目录,我收到同样的错误。

这是我输入的代码。

import pygal
from die import Die
# Create a D6.
die = Die()

# Make some rolls, and store results in a list.

results = []
for roll_num in range(1000):
    result = die.roll()
    results.append(result)


# Analyze the results
frequencies = []
for value in range(1, die.num_sides+1):
    frequency = results.count(value)
    frequencies.append(frequency)

# Visualize the results.
hist = pygal.Bar()
hist.title = "Results of rolling one D6 1000 times."
hist.x_labels = ['1', '2', '3', '4', '5', '6']
hist.x_title = "Result"
hist.y_title = "Frequency of Result"
hist.add('D6', frequencies)
hist.render_to_file('die_visual.svg')

1 个答案:

答案 0 :(得分:1)

来自pygal site

  

安装

     

pygal可用于python 2.7和3.2,3.3,3.4,3.5和pypy。

因此,它还没有为python 3.6做好准备。