What’s the best way to download a python package and it’s dependencies from pypi for offline installation on another machine? Is there any easy way to do this with...
  • May 22, 2022
  • 0 Comments
I use this command in the shell to install PIL: easy_install PIL then I run python and type this: import PIL. But I get this error: Traceback (most recent...
  • May 18, 2022
  • 0 Comments
I’m having difficulty installing lxml with easy_install on Ubuntu 11. When I type $ easy_install lxml I get: Searching for lxml Reading http://pypi.python.org/simple/lxml/ Reading http://codespeak.net/lxml Best match: lxml 2.3...
  • May 5, 2022
  • 0 Comments
A tweet reads: Don’t use easy_install, unless you like stabbing yourself in the face. Use pip. Why use pip over easy_install? Doesn’t the fault lie with PyPI and package...
  • April 16, 2022
  • 0 Comments
pip is a replacement for easy_install. But should I install pip using easy_install on Windows? Is there a better way? 40 Python 2.7.9+ and 3.4+ Good news! Python 3.4...
  • April 7, 2022
  • 0 Comments