I'm quite new on this Python world (i worked in the past with java, c++... but I never used Python).
Well, let's go with the question.
As I know, when I needed to export a java project, I just needed to create a .war (automaticly if I used Eclipse) and use it whenever and wherever I need it...
Now, I need to export a python project created in pyCharm and use it in other computers (it's a linux program created for getting information of the system and display it through sockets in a server), but I don't know what steps should I follow to export this project and use it on other machines.
My project looks like this:
+ProjectRootDir
+Package
-File.py (modules uses in main)
+MainPackage
-Main.py
+ExternalLibraries (I understand that I will need
to install them manually on the other computers).
Maybe is a stupid question, but I researched through manuals and other questions but I don't find the answer...
Any idea?
Regards!