I need to copy my project from machine A to machine B. If I copy the project to another machine I need to install all external libraries/frameworks for python before that. Is it possible to include all imported external libraries and frameworks into the project structure?
For instance, I'm using Flask inside of the project. I would like to configure my project in a way when I do not need to install Flask in machine B to run the project.
If I would like to solve the same task in java I just need to create a war/jar file. After that, just copy a jar file to the machine B.
Machine B does not have access to the internet so I can't use pip freeze
/ pyinstaller
.