I need to connect MySQLdb - module.
I download MySQLdb - module and install it.
But when i write (in python interactive shell): import MySQLdb
- i get no module named MySQLdb
.
Then i decided to include MySQLdb directory in PYTHONPATH variable.
I write (in python interactive shell):
export PYTHONPATH=${PYTHONPATH}:/where/module/lives/
And in response i receive a syntax error: invalid syntax
: export PYTHONPATH^
=${PYTHONPATH}:/where/module/lives/
What's wrong with syntax here?