I have a simple python script which reads a text file and do some processing on it. I need to distribute this code. So any one with Ubuntu operating system could run it. I import some modules as follows.
import pandas
import httpbl
from prettytable import from_csv
etc...
My question is how to make these packages installable with my script in any other users machine(Ubuntu).
There are lot of questions asked and I found this as the closest match. But any way I do not have much knowledge on doing this.