This is based on Install Python Flask without using pip
My environment has no rpms installed or enabled, nor do I have pip, easy_install, virtualenv, etc.
Based on the answer in the linked question, I need to install setuptools in order to install Jinja.
To do this, I downloaded and un-tared setuptools-19.1.1.tar.gz. I then run the following command and get an ImportError:
$python setup.py install
Traceback (most recent call last):
File "setup.py", line 21, in <module>
exec(init_file.read(), command_ns)
File "<string>", line 11, in <module>
File "/misc/scratch/flask-files/setuptools-19.1.1/setuptools/__init__.py", line 12, in <module>
from setuptools.extension import Extension
File "/misc/scratch/flask-files/setuptools-19.1.1/setuptools/extension.py", line 8, in <module>
from .dist import _get_unpatched
File "/misc/scratch/flask-files/setuptools-19.1.1/setuptools/dist.py", line 7, in <module>
import numbers
ImportError: No module named numbers
Does anyone know where I can grab the numbers module? I can't find what that would be.
Thank you!