I have already installed qrcode
library in my command prompt and also updated my command prompt. In the command prompt it says that everything is fine but when I go to PyCharm and type in:
import qrcode
img = qrcode.make("This is the qrcode")
img.save("myqrcode.png")
And when I run it, it says:
Traceback (most recent call last):
File "C:\Users\Antho\PycharmProjects\pythonProject\main.py", line 1, in <module>
import qrcode
ModuleNotFoundError: No module named 'qrcode'