I am trying to use pyinstaller to make an executable file of an application, but I am getting a problem with libraries that are not found. I would really appreciate if anyone could help me, please.
These are the libraries that I use: - import pickle - import os - import sys - import re - import shutil - from datetime import datetime - from googleapiclient.discovery import build - from google_auth_oauthlib.flow import InstalledAppFlow - from google.auth.transport.requests import Request - import requests - import webbrowser - from tqdm import tqdm - from tabulate import tabulate - import zipfile - import plotly.express as px - import pandas as pd - import PySimpleGUI as sg I get the first error at Google API Client and I can not move forward. Thank you for the attention. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/75ba13a5-dfcd-422c-ad30-5fee42ef5d96n%40googlegroups.com.
