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?
Asked
Active
Viewed 1,251 times
0
-
by the way, im new to programming, so I not very familiar with working on cmd – Shakesbeer Aug 05 '16 at 19:37
2 Answers
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
-
so I key in: cd D:\App\hypothesis-python-master and then type in python setup.py install right? – Shakesbeer Aug 05 '16 at 19:33
-
when I key in, python setup.py install, i got this: 'python' is not recognized as an internal or external command, operable program or batch file. – Shakesbeer Aug 05 '16 at 19:39
-
Do you have python installed on your computer, or do you ONLY have Wing? – Harrison Aug 05 '16 at 19:43
-
This will help you. http://pythoncentral.io/add-python-to-path-python-is-not-recognized-as-an-internal-or-external-command/ – Harrison Aug 05 '16 at 19:43
-
-
-
I got it working, reinstalled python, there's an option to add PATH, and then cmd can recognize pip, thank u so much – Shakesbeer Aug 05 '16 at 19:53
0
As shakesbeer and hleggs wrote, and also by giving:
easy_install hypothesis
hope this helps :)

NestorV
- 1
- 1