I’m pulling my hair out trying to use the Jira library in Python. Even though I’ve installed it using pip, my code editor keeps telling me it can’t find the jira import. It’s driving me crazy!
I’ve tried:
Running python3 -m pip install jira
Using different Python versions (3.9.6, 3.9.7, and 3.11)
Checking my terminal for installation errors
But nothing seems to work. The terminal shows ‘requirement already satisfied’ for jira, but Python still can’t find it.
Has anyone else run into this? Any tips on how to fix it? I’m stuck and could really use some help.
I’ve dealt with similar import headaches before, and it’s usually down to environment conflicts. Have you checked if your IDE is using a different Python interpreter than where you installed Jira? That’s bitten me more than once.
One thing that’s saved me tons of trouble is using virtual environments. Try creating one specifically for your project: