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.