Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

__pycache__ is not creating

Writer Matthew Barrera

I am working on Ubuntu 20.04 LTS where I am building exe file from python files. Below mentioned commands are I am using for building exe file.

$ pip3 install --upgrade pip
$ pip3 install --upgrade setuptools
$ pip3 install -r requirements.txt #installing packages tinytb,pymongo,etc.
$ pip3 install pyinstaller
$ pyinstaller --onefile MAIN_FILE.py

These are the commands I am using for building exe. After building exe I can see additional folders like build , dist , MAIN_FILE.spec but the issue I am facing is pycache folder is not creating. What I have to do for creation of pycache folder?

Will it affect anything to exe file if pycache is not creating ??

Please help me with this issue.

1 Reset to default

Know someone who can answer? Share a link to this question via email, Twitter, or Facebook.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy