use pip not easy_install

This commit is contained in:
ThomasV 2012-05-14 08:05:16 +02:00
parent 54fcd4a876
commit ff62a09832
1 changed files with 2 additions and 2 deletions

View File

@ -23,13 +23,13 @@ try:
import ecdsa
from ecdsa.util import string_to_number, number_to_string
except:
print "python-ecdsa does not seem to be installed. Try 'sudo easy_install ecdsa'"
print "python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'"
sys.exit(1)
try:
import aes
except:
print "AES does not seem to be installed. Try 'sudo easy_install slowaes'"
print "AES does not seem to be installed. Try 'sudo pip install slowaes'"
sys.exit(1)