ModuleNotFoundError: No module named 'CloudFlare' in Python

Question:

Hi i have a problem with Python module not found here, i decided to posting here cause i confuse with the error message

ModuleNotFoundError: No module named 'CloudFlare'

i already run pip install cloudflare

https://prnt.sc/GtXZE5xiPrIZ

the error is the same, but when i check the import CloudFlare package its shown that its connected to the module

https://prnt.sc/BorGtl5hCK8i

is there any problem when my file is not in the "laragon file" cause the pip is attach to laragon system ?

edit :

My python version is Python 3.12.0 its windows 7

Asked By: mzgalang

||

Answers:

You’re probably not using the same python version in your IDE and in your console.
Check which version you’re IDE is using, and check with which python3 or which python in your console if they are the same.

If not, use the correct pip in your console or change your python version in the IDE.

Answered By: Alexis Thierry
Categories: questions Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.