Trying to install flask-tarbell package using:
Installation fails and I get this message:
From the log, it appears to be a problem with setuptools:
Other package components seemed to download just fine. Any advice on how to rectify? asked 16 Sep '14, 16:35 bwareham |
The problem is that the package you're trying to install has not been packaged for Python 3+. This is evidenced by the format of the
In Python 3+,
answered 16 Sep '14, 16:42 seanf Yep. Should've caught that. Switched to Python 2.7 and seems to have worked.
(16 Sep '14, 17:08)
bwareham
Dang, what if you don't want to switch to Python 2.7? Is there a way in virtualenv to temporarily switch? This 2 to 3 thing seems a consistent headache cropping up all over the place.
(04 Oct '14, 08:35)
Bernd Wechner
What you're suggesting is reasonable, but I'm not sure that it's possible. In this particular case, the As a result, the It would be useful to have full
(04 Oct '14, 09:37)
ryans ♦♦
|