I have a Script, which using pyinstaller I turned into an Executable.
The issue is I need to be able to run this Script on PC which a) don't have Python installed, and b) no access to internet, and c) the Script used a bunch of packages.
So is there a way in which I can include Pyhton, and the packages into my Executable?
My import statements in my Script look like this:
import os
import datetime
import time
import magic
import json
from dateutil.parser import parse
import sys
import json
import tkinter as tk
from PIL import ImageTk,Image
from tkinter import *
AND libmagic needs to be installed as well..
Is it possible to include them into my executable?