I want to connect MySQLdb - module.
I downloaded MySQLdb - module and installed it.
Be that as it may, when I write (in python interactive shell) :
import MySQLdb
I get
no module named MySQLdb
At that point I chose to include MySQLdb registry/directory for PYTHONPATH variable.
I composed (In python interactive shell):
export PYTHONPATH=${PYTHONPATH}:/where/module/lives/
What's more, accordingly I get a syntax error:
invalid syntax:
export PYTHONPATH^=${PYTHONPATH}:/where/module/lives/
I don't know, what's wrong with the syntax here?