系统相关
首页 > 系统相关> > linux – Python ImportError下载后没有名为statistics的模块

linux – Python ImportError下载后没有名为statistics的模块

作者:互联网

我正在尝试运行我的代码,我不知道我需要什么特定的包,以使我的import语句工作.下面是我的标题,我不断收到错误说ImportError没有名为statistics的模块.我看了很多不同的页面,看看我可以在哪里下载解决方案,但我被困了.我知道我的代码有效,因为我在学校实验室运行它.如果有人可以提供帮助,那就太好了!
请注意我是初学者,并且正在使用Python 2.7在我的虚拟机上使用Linux

import sys
import requests
import matplotlib.pyplot as plt
import statistics as stat  

解决方法:

Statistics“Python 2. * 3.4统计模块的端口”(PyPI).

如果你使用2.7.9,你将安装pip,并且2.7目录中的pip install statistics应该安装2.7的模块(我不是一个点或虚拟机专家,所以可能稍微关闭.)

标签:importerror,python-idle,linux,python-2-7,matplotlib
来源: https://codeday.me/bug/20190725/1529079.html