I am trying to install EasyGUI. There is no setup.py
so I can't install the module like you can with a proper module that has a setup.py
file
Any help would be appreciated. Thanks
Asked
Active
Viewed 672 times
-2

Foon
- 6,148
- 11
- 40
- 42

sir_smiggles
- 17
- 5
-
After ten seconds of searching, I even located a video about how to install EasyGUI. What's your problem? – Ulrich Eckhardt Aug 05 '15 at 19:56
-
how about some specifics. Operating system, python version. – kaminsknator Aug 05 '15 at 19:56
-
I have reasearched and still havent found a solution. I have followed videos but it still is not working – sir_smiggles Aug 05 '15 at 20:00
-
A small amount of research (ie "I typed `pip search easygui` into my terminal") suggests that you can install it with pip. I'd recommend that. – NightShadeQueen Aug 05 '15 at 20:06
2 Answers
1
Don't put manually python file into PythonXX/Lib/site-packages
directory, use pip install <package-name>
instead e.g.:
$ pip install easygui
The advantage is that you can upgrade it later:
$ pip install -U easygui
Or uninstall:
$ pip uninstall -U easygui

jfs
- 399,953
- 195
- 994
- 1,670
0
You haven't install them, you just have to put it a directory, where Python find them, e.g. in a folder is already in your PYTHONPATH
.
Perhaps the best if you put PythonXX/Lib/site-packages
directory.

Geeocode
- 5,705
- 3
- 20
- 34
-
Thanks, this helped. I installed a fresh copy of Python 2.7 and then it created a directory for Python. Moved the module into there and it worked! – sir_smiggles Aug 05 '15 at 20:06