Python Forum
folder PyQt5 created during creation exe
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
folder PyQt5 created during creation exe
#1
Hello;
I just created an exe of an application made under Tkinter (python 3.6) with this code:

python setup.py build
the creation of the executable was done successfully, but in the "lib" folder, I found a subfolder "PyQT5"
my question is why this folder was created while I was using Tkinter as a GUI to create the graph, and not PyQt5
for information, here is the python code that I used to import the libraries:

#!/usr/bin/python3
# -*- coding: utf-8 -*-
     
from math import *
from tkinter import *
from tkinter.filedialog import *
import tkinter.ttk as ttk
from tkinter.ttk import Notebook

from tkinter import messagebox
import tkinter as tk

from tkinter import font 

from datetime import *
import time
import calendar
import datetime

import os

import pathlib# to create folder if not exist

#to fix this error : ImportError: No module named backend_tkagg
import matplotlib.backends.backend_tkagg

import matplotlib.pyplot as plt

import numpy as np
from pathlib import Path
from matplotlib.ticker import MultipleLocator, FormatStrFormatter
import numpy.core._methods
import numpy.lib.format

import sqlite3

from functools import partial 
from PIL import Image, ImageTk
thanks for the help
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 547 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  Compare filename with folder name and copy matching files into a particular folder shantanu97 2 4,487 Dec-18-2021, 09:32 PM
Last Post: Larz60+
  "ModuleNotFoundError: No module named 'PyQt5.QtWidgets'; 'PyQt5' is not a package" chipx 3 7,448 Dec-09-2021, 07:05 AM
Last Post: chipx
  Move file from one folder to another folder with timestamp added end of file shantanu97 0 2,475 Mar-22-2021, 10:59 AM
Last Post: shantanu97
  Python Cut/Copy paste file from folder to another folder rdDrp 4 5,054 Aug-19-2020, 12:40 PM
Last Post: rdDrp
  Delete directories in folder is not working after folder is updated asheru93 2 2,658 Feb-13-2019, 12:37 PM
Last Post: asheru93
  Temp folder creation ste1605 7 5,270 Oct-03-2018, 10:39 AM
Last Post: buran
  copy content of folder to existing folder shlomi27 0 2,641 Aug-11-2018, 01:44 PM
Last Post: shlomi27
  Copy folders to newly created folder and append Filthy_McNasty 5 5,060 Feb-21-2017, 05:26 PM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020