I'm writing a script that uses MySQLdb and pymssql modules. I'm using python 2.7. I need to run this script on a computer (Linux) on which I have no permissions to install the modules or to add to the path variable.
I was thinking of using the import from syntax, but it lookes like it's looking for a .py file that doesn't exist for any of the two modules.
I'm getting the error: 'No module named pymssql' for the line 'from pymssql import pymssql' or 'from pymssql import *'. (pymssql is a directory containing the files in the pymssql source zip).
Edit: The script will run on multiple hosts so I'm trying to avoid installations of any kind.