1

I know that this could be marked as a duplicate, but hear me out!
The questions like this one are horribly out of date and no longer apply to my needs!

I used help("Modules")to get a list of all installed modules.
The module I was looking for, "crypt" was in the list.
When I tried to import it in the shell and in a new file, I got the following error:

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    import crypt
  File "C:\Users\Work\AppData\Local\Programs\Python\Python35-32\lib\crypt.py", line 3, in <module>
import _crypt
ImportError: No module named '_crypt'

Note: I did not call it with an underscore

Mohammad Yusuf
  • 16,554
  • 10
  • 50
  • 78
User9124
  • 13
  • 3

1 Answers1

2

It looks like you are trying to run it on Windows -- crypt is a Unix-only library.

https://docs.python.org/dev/library/crypt.html

Kevin Seaman
  • 652
  • 3
  • 9