-2

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

Foon
  • 6,148
  • 11
  • 40
  • 42

2 Answers2

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

pip is the preferred installer program.

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