Yes; download them to a directory, go into that directory and use -f.
as in:
ez_setup.py -f. TurboGears
By the way, there is also a proxy server available at
http://ntlmaps.sf.net/ that lets Python get through NTLM-based
firewalls in the same way that your web browser does; you just have to
run it and configure urllib to use it as a proxy server.
I'm not sure which cElementTree file to get (i'm running windows here)
should i get ElementTree + win32 or ElementTree + modified one?
For Windows, I don't believe you need any source packages; just get
.egg and -win32.egg files. Note, however, that if you get more than
you need, or less than you need, it's not a problem. If you're missing
something, the install process will fail, but can safely be restarted
once you download the missing thing. When you rerun the same command,
it'll only look for things it hasn't already installed.
then i added the <pythonDir>\scripts dir to the path, and went i run
tg-admin i get this error
Traceback (most recent call last):
File "c:\python24\Scripts\tg-admin-script.py", line 5, in ?
from pkg_resources import load_entry_point
File
"c:\python24\lib\site-packages\setuptools-0.6a8-py2.4.egg\pkg_resources.py",
line 2192, in ?
working_set.require(__requires__)
File
"c:\python24\lib\site-packages\setuptools-0.6a8-py2.4.egg\pkg_resources.py",
line 503, in require
needed = self.resolve(parse_requirements(requirements))
File
"c:\python24\lib\site-packages\setuptools-0.6a8-py2.4.egg\pkg_resources.py",
line 483, in resolve
raise DistributionNotFound(req) # XXX put more info here
pkg_resources.DistributionNotFound: TestGears>=0.2
Kevin
--
Kevin Dangoor
Author of the Zesty News RSS newsreader
email: k...@blazingthings.com
company: http://www.BlazingThings.com
blog: http://www.BlueSkyOnMars.com
i download them all, and easy_install exit without a problem.
I download them all, easy_install exit without a problem and i get that
error.
mkdir turbogears_install
cd turbogears_install
wget http://turbogears.org/download/index.html
mv index.html tg_install.html
vim tg_install.html
## Delete all html not related to the download, save and quit
mkdir eggs
cp tg_install.html eggs/tg_install_temp
cd eggs
vim tg_install_temp
## Delete everything except the download links:
## :%s/^.*http/http/
## :%s/">.*$//
## :%g!/^http/d
## save and quit
for x in `tg_install_temp`;do wget $x; done
# tar it, scp it here, whatever, get back in the turbogears_install directory
easy_install -f ./tg_install.html TurboGears
Kevin