Guest User

Untitled

a guest
Jul 4th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. Installing SSL Module for Python (2.5.4) on Windows
  2. > "C:Python25python.py" setup.py install -c mingw32
  3.  
  4. C:Usersfaits>easy_install ssl
  5. Searching for ssl
  6. Best match: ssl 1.15
  7. Adding ssl 1.15 to easy-install.pth file
  8.  
  9. Using c:python25libsite-packages
  10. Processing dependencies for ssl
  11. Finished processing dependencies for ssl
  12.  
  13. C:Usersfaits>easy_install ssl
  14. Searching for ssl
  15. Best match: ssl 1.15
  16. Adding ssl 1.15 to easy-install.pth file
  17.  
  18. Using c:python25libsite-packages
  19. Processing dependencies for ssl
  20. Finished processing dependencies for ssl
  21.  
  22. IDLE 1.2.4
  23. >>> import ssl
  24.  
  25. Traceback (most recent call last):
  26. File "<pyshell#0>", line 1, in <module>
  27. import ssl
  28. File "C:Python25libsite-packagesssl__init__.py", line 61, in <module>
  29. import _ssl2 # if we can't import it, let the error propagate
  30. ImportError: No module named _ssl2
  31.  
  32. >>> import pycrypto
  33.  
  34. Traceback (most recent call last):
  35. File "<pyshell#1>", line 1, in <module>
  36. import pycrypto
  37. ImportError: No module named pycrypto
  38.  
  39. --compile (-c) compile .py to .pyc [default]
  40.  
  41. --compiler (-c) specify the compiler type
Advertisement
Add Comment
Please, Sign In to add comment