| python Programming Glossary: distributeHow do I protect Python code? http://stackoverflow.com/questions/261638/how-do-i-protect-python-code  I am developing a piece of software in Python that will be distributed to my employer's customers. My employer wants to limit the.. of the software with a time restricted license file. If we distribute the .py files or even .pyc files it will be easy to decompile.. 
 What's the proper way to install pip, virtualenv, and distribute for Python? http://stackoverflow.com/questions/4324558/whats-the-proper-way-to-install-pip-virtualenv-and-distribute-for-python  the proper way to install pip virtualenv and distribute for Python  Short Question What is the proper way to install.. What is the proper way to install pip virtualenv and distribute Background In my answer to SO question 4314376 I recommended.. other packages I install there are virtualenvwrapper and distribute . I recently added distribute to my toolbox because of this.. 
 Differences between distribute, distutils, setuptools and distutils2? http://stackoverflow.com/questions/6344076/differences-between-distribute-distutils-setuptools-and-distutils2  between distribute distutils setuptools and distutils2  The Situation I ™m trying.. when building for Python 3. To do that I need to use distribute . Therefore I need to port the current system which according.. what ™s the difference between these modules code distutils distribute setuptools . The documentation is sketchy as best as they all.. 
 Python 2 and Python 3 dual development http://stackoverflow.com/questions/11372190/python-2-and-python-3-dual-development  several different ways of doing this. I also came across Distribute . There is also the option of trying to write polyglot Python.. conversion Run 2to3 or 3to2 automatically in setup.py Use Distribute to do this for you Distribute is a one file project that can.. in setup.py Use Distribute to do this for you Distribute is a one file project that can easily be included in your project.. 
 python pip install fails: invalid command egg_info http://stackoverflow.com/questions/11425106/python-pip-install-fails-invalid-command-egg-info  comes with egg_info . Should be as simple as pip install Distribute . Distribute has been merged into Setuptools as of version 0.7... egg_info . Should be as simple as pip install Distribute . Distribute has been merged into Setuptools as of version 0.7. If you are.. 
 What is causing ImportError: No module named pkg_resources after upgrade of Python on os X? http://stackoverflow.com/questions/1756721/what-is-causing-importerror-no-module-named-pkg-resources-after-upgrade-of-pyth    UPDATE TL DR pkg_resources is provided by either Distribute or setuptools . UPDATE 2 As announced at PyCon 2013 the Distribute.. or setuptools . UPDATE 2 As announced at PyCon 2013 the Distribute and setuptools projects have re merged. Distribute is now deprecated.. the Distribute and setuptools projects have re merged. Distribute is now deprecated and you should just use the new current setuptools.. 
 How to solve pkg_resources.VersionConflict error during bin/python bootstrap.py -d http://stackoverflow.com/questions/17586987/how-to-solve-pkg-resources-versionconflict-error-during-bin-python-bootstrap-py  Now working in tmp tmpDqVwYA distribute 0.6.49 Building a Distribute egg in tmp tmpv4Bzyv tmp tmpv4Bzyv distribute 0.6.49 py2.7.egg.. 
 Why use pip over easy_install? http://stackoverflow.com/questions/3220404/why-use-pip-over-easy-install  assume that we're talking about easy_install from the Distribute package that is maintained by the community  python setuptools.. 
 Getting Python under control on Mac OS X - setting up environment and libraries http://stackoverflow.com/questions/3487664/getting-python-under-control-on-mac-os-x-setting-up-environment-and-libraries  add ons like pip or the easy_install command from Distribute or setuptools for each Python instance you use. Each one is.. 
 It is possible to install another version of Python to Virtualenv? http://stackoverflow.com/questions/5506110/it-is-possible-to-install-another-version-of-python-to-virtualenv  virtual environment unzip setuptools Unzip Setuptools or Distribute when installing it relocatable Make an EXISTING virtualenv environment.. scripts and makes all .pth files  relative distribute Use Distribute instead of Setuptools. Set environ  variable VIRTUALENV_USE_DISTRIBUTE.. 
 Differences between distribute, distutils, setuptools and distutils2? http://stackoverflow.com/questions/6344076/differences-between-distribute-distutils-setuptools-and-distutils2  As an aside I ™d also appreciate some guide on porting to Distribute but that ™s a tad beyond the scope of the question  python packaging.. and magic that is frowned upon by Python core developers. Distribute is a fork of Setuptools that was started by developers feeling.. 
 Easy_install and Pip doesn't work http://stackoverflow.com/questions/7110360/easy-install-and-pip-doesnt-work    share improve this question   Try sudo easy_install Distribute and if that exists but is too old sudo easy_install U Distribute.. and if that exists but is too old sudo easy_install U Distribute Looks like either Distribute setuptools it's old name is messed.. too old sudo easy_install U Distribute Looks like either Distribute setuptools it's old name is messed up or Python package settings... 
 Distributing integers using weights? How to calculate? http://stackoverflow.com/questions/9088403/distributing-integers-using-weights-how-to-calculate  value.  python algorithm   share improve this question   Distribute the first share as expected. Now you have a simpler problem.. 
 import lxml fails on OSX after (seemingly) successful install http://stackoverflow.com/questions/9854969/import-lxml-fails-on-osx-after-seemingly-successful-install  also need to install and use a copy of easy_install from Distribute or setuptools to use with it. You ended up using the default.. 
 |