इसके लिए धन्यवाद। किसी और के लिए जो इसे fbs या pyinstaller और जमे हुए ऐप्स का उपयोग करके देखता है।
मैं नीचे उपयोग कर सकता हूं जो अभी काम करता है।
target_db = os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), "sqlite_example.db")
मैं यह फर्जीवाड़ा कर रहा था, जो स्पष्ट रूप से आदर्श नहीं था।
if platform == 'Windows':
target_db = (os.path.abspath(os.path.dirname(sys.argv[0])) + "\\" + "sqlite_example.db")
if platform == 'Linux' or 'MAC':
target_db = (os.path.abspath(os.path.dirname(sys.argv[0])) + "/" + "sqlite_example.db")
target_db_path = target_db
print(target_db_path)