I've recently switched from Windows 10 to Linux Mint, but after pulling some of my old git projects I'm having issues getting the modules to work correctly. My initial import list looks like this:
import tkinter as tk
import pandas as pd
from tkinter import ttk
from tkinter import tix
from file_selection import FileSelect
from option_selection import PrefixOptions
from duplicate_correction import DuplicateCorrection
from coa_mapping import CoaConfigure
from data_export import DataExport
Initially I was getting the error for tkinter, but after installing through the Linux Mint software centre the error resolved. I've done the same for Pandas, but I'm still getting a no module found error. The interpreter settings also indicate pandas should be functioning.

I've tried reviewing installation methods between pip and the Linux software centre, as well as global vs venv options, but I'm struggling to find a consistent answer on how this should be handled.