0

I'm using Wing IDE, how do I install hypothesis Python package to my computer? I have already download the zip file, do I use command prompt to install it or there is an option in Wing IDE to do it?

Shakesbeer
  • 513
  • 1
  • 7
  • 12

2 Answers2

1

pip install hypothesis

Assuming you have pip.

If you want to install it from the downloaded package just open command prompt and cd to the directory where you downloaded it and do

python setup.py install

Harrison
  • 5,095
  • 7
  • 40
  • 60
0

As shakesbeer and hleggs wrote, and also by giving:

    easy_install hypothesis

hope this helps :)

NestorV
  • 1
  • 1