I need to mirror all my Python settings and modules on Computer A vs Computer B.
I could list all packages/modules in computer A using pip list
and then install them on computer B one by one - but there are literally ~ 100s of packages.
Is there a better/quicker way to achieve this?
In addition:
1) When overwriting previous installations, for example, do I have to use pip install --force-reinstall "pandas==0.23.0"
?
2) Is there a way to exclude selected packages (some personal, redundant modules)?
Both machines are Windows and run the same Python version.