I am running pip3 wheel -r requirements.txt -w /wheel_files/ command to store the wheel files of different packages into the local filesystem.
I have package A of version v1 which internally depends on package C of version v3 and package B of version v2 which depends on package C of version v1. while running the pip3 wheel command to create the wheel files and save them to the local filesystem, it is ignoring version v1 of package C as version v3 of package C is already saved into the local folder. How can I save both the versions of v1 and v3 of package C into the file system?
I am using pip version 20.2.4