server:/home/data1/download/pyparsing-1.4.1 # python setup.py install
Traceback (most recent call last):
File "setup.py", line 4, in ?
from distutils.core import setup
ImportError: No module named distutils.core
where can I get this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
distutils.core is part of the base Python install. pyparsing's setup.py hasn't changed in over 2 years. What version of Python are you running? pyparsing requires at least version 2.3.2 of CPython (Jython wont work).
-- Paul
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
During install I'm getting this message
server:/home/data1/download/pyparsing-1.4.1 # python setup.py install
Traceback (most recent call last):
File "setup.py", line 4, in ?
from distutils.core import setup
ImportError: No module named distutils.core
where can I get this?
distutils.core is part of the base Python install. pyparsing's setup.py hasn't changed in over 2 years. What version of Python are you running? pyparsing requires at least version 2.3.2 of CPython (Jython wont work).
-- Paul