Hello everybody.
I have got a problem installing (or using) clonedigger.
1- I installed setuptools without any problem :
Because i am using Python 2.6, I downloaded "setuptools-0.6c9.tar.gz" and "setuptools-0.6c9-py2.6.egg" and I ran "python ez_setup.py setuptools-0.6c9-py2.6.egg". Everything went ok.
2- But when I run "easy_install -U clonedigger", here is what I obtain :
------------------------------------------------
Searching for clonedigger
Reading http://pypi.python.org/simple/clonedigger/
Download error: [Errno 10061] Aucune connexion n'a pu être établie car l'ordinateur cible l'a expressément refusée -- Some packages may not be found!
Reading http://pypi.python.org/simple/clonedigger/
Download error: [Errno 10061] Aucune connexion n'a pu être établie car l'ordinateur cible l'a expressément refusée -- Some packages may not be found!
Couldn't find index page for 'clonedigger' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
Download error: [Errno 10061] Aucune connexion n'a pu être établie car l'ordinateur cible l'a expressément refusée -- Some packages may not be found!
No local packages or download links found for clonedigger
error:Could not find suitable distribution for Requirement.parse('clonedigger')
------------------------------------------------
3- I think this is because I am behind a proxy.
So I configured my environment variable : "set HTTP_PROXY=http://user:password@proxy:port", and now I obtain that result when I run "easy_install -U clonedigger":
------------------------------------------------
Searching for clonedigger
Reading http://pypi.python.org/simple/clonedigger/
Couldn't find index page for 'clonedigger' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
No local packages or download links found for clonedigger
error:Could not find suitable distribution for Requirement.parse('clonedigger')
------------------------------------------------
4- So I tried to install clonedigger manually (downloaded the last version on http://pypi.python.org/simple) and then run "python setup.py install").
Everything went right (I thought) but when I run clonedigger ("clonedigger test.py"), here is the error I obtain :
------------------------------------------------
Traceback (most recent call last):
File "D:\PROGRAM\PYTHON261\Scripts\clonedigger-script.py", line 8, in <module>
load_entry_point('clonedigger==1.0.9-beta', 'console_scripts', 'clonedigger')()
File "D:\PROGRAM\PYTHON261\lib\site-packages\setuptools-0.6c9-py2.6.egg\pkg_resources.py", line 277, in load_entry_point
File "D:\PROGRAM\PYTHON261\lib\site-packages\setuptools-0.6c9-py2.6.egg\pkg_resources.py", line 2180, in load_entry_point
File "D:\PROGRAM\PYTHON261\lib\site-packages\setuptools-0.6c9-py2.6.egg\pkg_resources.py", line 1913, in load
ImportError: No module named clonedigger.clonedigger
------------------------------------------------
Does it mean clonedigger is badly installed ? Or does it miss something ?
I'm working with windows 2k, with Python 2.6.
If you have any idea of what's my problem, and what can I do, I'm listening !
Thank you.