Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to run my standalone software on other software but it requires module files to be able to start the program.i have required python modules files in my main laptop but how can i import them into my software folder?so that i can run my software on different laptop.i am in trouble about it.

What I have tried:

i used pip install <modules> into new folder from my software but it takes too much space.so Please help me if you can..
Posted
Updated 21-Feb-22 21:23pm
v3

1 solution

You should use the Python Virtual Environment feature as described at 12. Virtual Environments and Packages — Python 3.10.2 documentation[^]. That way you can copy the complete folder to the new laptop. And the amount of space required is a constant, you cannot change it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900