Like many others I was not able to install (using pip) pandas on my MacBook M1, eventually thanks to this answer I managed to install it from source.
After cloning pandas the steps are
source venv/bin/activate
pip install cython
cd pandas
python3 setup.py install
I am obviously able to do the same for every project (virtualenv) I work with, but I would like to install in each project the locally built pandas module (v1.3.0.dev0+1019.gc10dd1a5f1) without a full rebuild from source.
Is that possible?