Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to install easy_install on windows ?

6 views
Skip to first unread message

smith jack

unread,
Aug 16, 2011, 8:17:12 AM8/16/11
to pytho...@python.org
it needs read registry, but the python i used is extracted from .zip,
so there is no record in the registry,
what should i do in order to install easy_install for my python environment?

aspineux

unread,
Aug 16, 2011, 8:39:54 AM8/16/11
to
On Aug 16, 2:17 pm, smith jack <thinke...@gmail.com> wrote:
> it needs read registry, but the python i used is extracted from .zip,
> so there is no record in the registry,

Noone need it, Python dont use any registry key

> what should i do in order to install easy_install for my python environment?

get ez_setup.py from http://peak.telecommunity.com/dist/ez_setup.py

in a command prompt run
C:\Your Python Directory\python.exe C:\Your Download directory
\ez_setup.py

Then use

C:\Your Python Directory\python.exe C:\Your Python Directory\I dont
know where the easy_install script will be installed\easy_install.py
install module_name

to install a modul_name

Regards

Duncan Booth

unread,
Aug 17, 2011, 9:15:04 AM8/17/11
to
aspineux <aspi...@gmail.com> wrote:

> in a command prompt run
> C:\Your Python Directory\python.exe C:\Your Download directory
> \ez_setup.py
>
> Then use
>
> C:\Your Python Directory\python.exe C:\Your Python Directory\I dont
> know where the easy_install script will be installed\easy_install.py
> install module_name

Or even just use:

C:\Your Python Directory\scripts\easy_install install module_name

as easy_install will also add a .exe to your Python's 'scripts' folder.


--
Duncan Booth http://kupuguy.blogspot.com

0 new messages