0

I try to run python script with from fast import FAST and I get an error:

ImportError: No module named fast

I don't know what is this module for and where to get it. Does somebody know?

drastega
  • 1,319
  • 3
  • 26
  • 39

1 Answers1

1

In case of unknown modules, Python Package Index homepage is main source of information. Looks like you're missing package for software testing Assuming you have pip installer (maybe How to install pip on windows will be useful, if you're on windows) all you have to do is:

pip install fast

which downloads package with it's dependencies and installs it into your local python package library.

Community
  • 1
  • 1
Gabriel M
  • 618
  • 3
  • 7