PyInstaller file fails to execute script – DistributionNotFound

Question:

I’m trying to convert my python file to an executable using PyInstaller. The program uses the Google Cloud Translate API to translate given text between languages. When running python quicktrans.py in the terminal, the program works fine. Then I ran pyinstaller quicktrans.py, SHIFT + right-clicked the directory the executable was in, and ran the .exe file in the terminal. This is the traceback that it spit out (Note this is not the whole traceback because it is a little lengthy):

File "c:userskalabrealpythonquicktransgooglecloudconnection.py", line 31, in <module>
    get_distribution('google-cloud-core').version)
  File "site-packagespkg_resources__init__.py", line 559, in get_distribution
  File "site-packagespkg_resources__init__.py", line 433, in get_provider
  File "site-packagespkg_resources__init__.py", line 970, in require
  File "site-packagespkg_resources__init__.py", line 856, in resolve
pkg_resources.DistributionNotFound: The 'google-cloud-core' distribution was not found and is required by the application
Failed to execute script quicktrans

I’ve tried looking into this and some reason it’s giving me a pip-like error. I’ve been trying to fix this for hours and no luck.
Note: To install its client library, as per the documentation, you must run pip install --upgrade google-cloud-translate

I’m thinking this might have something to do with this because the last application I used dealt with the Facebook client module and you only had to do pip install facebook-sdk and the executable made by PyInstaller ran with no issues.

If you want to examine my code used in my program, it’s hosted on my GitHub.

Thanks to anyone helping me out here!

Asked By: Mangohero1

||

Answers:

My personal solution:

  1. Change all calls to get_distribution with it returned values (0.21.0 in my case)
  2. Remove from pkg_resources import get_distribution from import

for all files in the package.

Answered By: Botte Oleksandr

In my experience base on the helps in https://github.com/GoogleCloudPlatform/google-cloud-python/issues/1187 :

  1. Go Anaconda3Libsite-packagesPyInstallerhooks folder (if you use anaconda otherwise you need to find it under python folder)
  2. Find the hook-google-cloud.py (If exist, otherwise you need to creat the hook.
  3. Write to existing code as shown below
    '''
    Copyright (c) 2017, PyInstaller Development Team.
    
    Distributed under the terms of the GNU General Public License with   exception
    for distributing bootloader.
    
    The full license is in the file COPYING.txt, distributed with this software.
    '''
    
    from PyInstaller.utils.hooks import copy_metadata
    
    datas = copy_metadata('google-cloud-core')
    
    datas += copy_metadata('google-cloud-translate')
    
    datas += copy_metadata('google-api-core')
    

Hope you find this explaination helpful. Thank you.

Answered By: K A K

It is basically package building name issue. Pyinstaller tries to import

google.cloud

where Google cloud package is now called

gcloud

. So you need to create a hook file for that names

C:Users\AppDataLocalProgramsPythonPython36-32Libsite-packagesPyInstallerhookshook-gcloud.py

File contents:

from PyInstaller.utils.hooks import copy_metadata

datas = copy_metadata('gcloud')
Answered By: Arun K

I had the exact same issue. I solved it by doing this:

  1. Goto the Pyinstaller hooks folder (~Libsite-packagesPyInstallerhooks)
  2. Find the file hook-google.cloud.py, open it, and add the following code to it
datas += copy_metadata('google-cloud-translate')
datas += copy_metadata('google-api-core')

The issue seems to be that get_distribution is not working with the default google.cloud.translate hook, so I just added this to a hook that was working.

Hope this helps someone.

Answered By: Murtaza Samiwala

Alternate hook tweak

I’m running into this same essential problem with the Google speech engine.

It’s odd how everyone here seems to have success with slightly alternate solutions to this. I really don’t understand how the "patches" to the hook which leave copy_metadata('google-cloud-core') in place can work? The error thrown back reads The 'google-cloud-core' distribution was not found..., so how can one execute that line as is?

This is my replacement for the file content of hook-google.cloud.py, in order to build an exe using google speech:

# PATCH: PROVIDED ALTERNATE PACKAGE NAME
from PyInstaller.utils.hooks import copy_metadata
try:
    datas = copy_metadata('google-cloud-core')
except:
    datas = copy_metadata('google-cloud-speech')
Answered By: BuvinJ

I was using PyCharm venv for my project, and the only solution that worked for me is changing the project over to a system interpreter (and install the required packages to that).

Answered By: DavidBanoczi

Today, when I tried to build an EXE out of my Python script, I got the same error:

pkg_resources.DistributionNotFound: The 'google-cloud-core' distribution was not found and is required by the application

I thought the reason was one of the listed ones in this thread, since I was sure I had all dependencies installed with pipenv because my code compiled and I could debug and run the code without issues. Note I used pipenv shell in an empty folder and created my app in it, installing all necessary libraries using pipenv install ..., and one of the libraries was google-cloud-dialogflow (the app is a chatbot manager).

The solution was simply to run pipenv install google-cloud-core.

Now, pyinstaller chatbot_manager.py --onefile --windowed created the c:Users...distchatbot_manager.exe file without issues.

Answered By: Wiktor Stribiżew

Just try PIP install the issue hook

Answered By: Arjun Goud