Skip to content Skip to sidebar Skip to footer

"import Statistics" Fails To Run

When I use IDLE the code 'import statistics' runs, however when I use sublimetext while other packages, such as matplotlib, can be imported I cannot import the statistics module. I

Solution 1:

Go to the command prompt.

Type

pip3 install update

If that doesn't work try

pip3 install --upgrade pip

Then type

pip3 install statistics

at the command prompt.

This has solved my similar problems in the past :)

Post a Comment for ""import Statistics" Fails To Run"