I am trying to develop .exe file from my python script , but its size is more than 715MB , even i am using virtual environment for developing but still size is very big.
These libraries i am using in my script:
import numpy as np
import pandas as pd
import os
import matplotlib.pyplot as plt
import configparser
Steps for developing .exe
1)pip install virtualenv #install virtualenv
2)virtualenv name_env #creat a virtualenv
3)pip install your packages in new virtualenv
4)cmd and activate
5)cd to the dir of python script
4)pyinstaller -w -F mainscript.py
Anyone can help to figure out where i am making mistake
normally this app should be 42MB or less than 50MB
but here size is 600MB+