tags:

views:

32

answers:

1

I have downloaded and install a python library, via setup.py , python2.5 setup.py install ...

now the version is changed at the source . a newer library is available. originally , i have clone it via mercurial, and install it. right now , i have updated repository.

how do i use the newer version ? overwrite the installation ?

by simply doing setup.py install again ?

+1  A: 

Yes, just do setup.py install again.

jhwist