I have written a little script, with python 3 and on Linux. I would like to give it to my colleagues, who are essentially on Mac OS. Here are my imports:
import numpy as np
from scipy.optimize import curve_fit
from matplotlib.pyplot import *
import xlrd
from PyPDF2 import PdfFileReader, PdfFileWriter
import os
from clize import clize, run
Normally, all these libs exist for python 2 and 3. I would like to make a kind of package for my team, easy to use for them, but I know almost nothing about Mac OS. Is there a way to do that ? I don't need it very clean, it's just an inside program.
Thanks.