Help connecting to Jira

I’m connecting to Python through the Coder webpage and launching in VS Coder. I have an initial code cell that imports a number of libraries:

“ from jira import JIRA
import pandas as pd
import numpy as np
import re
from openpyxl import load_workbook
from openpyxl.utils import get_column_letter
from datetime import datetime “

When I’m connected to the ‘Python 3.12.3 kernel’ and run that cell I get this error message:

“ Running cells with ‘Python 3.12.3’ requires the ipykernel package.
Install ‘ipykernel’ into the Python environment.
Command: ‘/user/bin/python3 -m pip install ipykernel -U –user –force-reinstall’ “

When I’m connected to the ‘.venv (3.12.3) (Python 3.12.3)’ kernel after installing the ipykernel package, I get this error message:

“ ModuleNotFound Error
Cell In[1], line 1
—→ 1 from Jira import JIRA
2 import pandas as pd
3 import numpy as np

ModuleNotFoundError: No module named ‘jira’ ”

With or without admin support, what configuration changes are needed to enable the code run?

You haven’t installed jira in the .venv I’d use something like uv to manage packages available to your environments since it makes it pretty hands off

Note: I did notice that in the error the jira package is imported as Jira which if correct would cause a ModuleNotFound exception since the module is called jira not Jira