Closed larsbutler closed 10 years ago
It seems you did not install Jinja2 in your virtualenv?
No I didn't. I guess distutils
doesn't automatically install dependencies? setuptools
does.
Right, distutils has never done dependency management. That came with unpopular easy_install
script from the setuptools package. That was the same package that suggested that people let their setup.py
script bootstrap setuptools if it wasn't already installed — a drive-by-install of setuptools when you tried to install some other package.
The deal is that you use pip install
if you want dependencies resolved and python setup.py install
if you want to install a single package. Having pip available implies that setuptools is there too since pip depends on setuptools.
Okay, thanks for the clarification. I was under the false impression that dependencies should be resolved in this case.
No problem!
When I tried to install
zpm
into a virtualenv usingsetup.py
, I get the following issues: