use pip not easy_install
authorThomasV <thomasv@gitorious>
Mon, 14 May 2012 06:05:16 +0000 (08:05 +0200)
committerThomasV <thomasv@gitorious>
Mon, 14 May 2012 06:05:16 +0000 (08:05 +0200)
lib/wallet.py

index c349f9a..5bf3cd4 100644 (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)