Sakir saiyed
Sakir saiyed

Reputation: 742

apportable : No module named argparse error on mac

i just installed apportable from here : http://www.apportable.com/users/1928 now , after installing successfully it gives this error :

Traceback (most recent call last): File "/Users/macintosh/.apportable/SDK/bin/apportable", line 3, in import argparse ImportError: No module named argparse

i can understand it's import issue .. but i am not able to resolve this .. can anyone help on this !! i have tried this for many times & still same error .. what could be the possible resolution to this. please help !

Upvotes: 1

Views: 969

Answers (1)

Paul Beusterien
Paul Beusterien

Reputation: 29582

You may have an old python. You should have version 2.7+:

$ python --version
Python 2.7.2

Or old MacOS X. Apportable requires Mac OS X 10.7+.

Upvotes: 1

Related Questions