sanjay pujari
sanjay pujari

Reputation: 489

Cheetah package installation error -on python 3

Getting below error while installing Cheetah package (Cheetah-2.4.4) with python 3.4.3

Traceback (most recent call last):
  File "setup.py", line 10, in <module>
    import SetupTools
ImportError: No module named 'SetupTools'

Tries many ways resolving this but no luck. Can any one pls help me what is missing here.

Upvotes: 2

Views: 5874

Answers (2)

Anil Koppula
Anil Koppula

Reputation: 753

Use pip install Cheetah for python 2.x and pip3 install Cheetah3 for python 3.x

Upvotes: 2

phd
phd

Reputation: 94407

This should be fixed in Cheetah 3, released today. Cheetah3 works with Python 3.3+.

Upvotes: 1

Related Questions