Hi I have a built up Python 2.7 environment with Ubuntu 19.10.
I would like to build a whl package for pandas.
I pip installed the pandas but do not know how to pack it into whl package.
May I ask what I should do to pack it.
Thanks
You cannot pack back an installed wheel. Either you download a ready-made wheel with pip download
or build from sources: python setup.py bdist_wheel
(need to download the sources first).