i try to install curses module on vs code for my python project but i got this error
C:\Users\hacking-bharat\Desktop\hacking-bharat-chatbot\chat-bot-1>pip install curses
ERROR: Could not find a version that satisfies the requirement curses (from versions: none)
ERROR: No matching distribution found for curses
These type of basic error you’ll got many times, don’t worry try “pip install windows-curses” this works for me.
C:\Users\hacking-bharat\Desktop\hacking-bharat-chatbot\chat-bot-1>pip install windows-curses
Collecting windows-curses
Downloading windows_curses-2.1.0-cp37-cp37m-win_amd64.whl (69 kB)
|████████████████████████████████| 69 kB 123 kB/s
Installing collected packages: windows-curses
Successfully installed windows-curses-2.1.0
0 Comments