__pycache__ is not creating
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.pyThese 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