ルートなしでPythonのMySQLdbモジュールをインストールすると権限エラーが発生する

ルートなしでPythonのMySQLdbモジュールをインストールすると権限エラーが発生する

マシン (Linux) へのルートアクセス権はありませんが、Python 用の MySQLdb モジュール (またはその他の MySQL モジュール) をインストールしたいと思います。

いつものアプローチ(python setup.py install --user)を試しましたが、フラグが実装されていないようです

--home=~ フラグを付けて実行すると次のようになります

running install
Checking .pth file support in /user/alperin/lib64/python/
error: can't create or remove files in install directory

The following error occurred while trying to add or remove files in the installation directory:

[Errno 2] No such file or directory: '/user/alperin/lib64/python/test-easy-install-11328.pth'

The installation directory you specified (via --install-dir, --prefix, or the distutils default setting) was:

/user/alperin/lib64/python/

This directory does not currently exist.  Please create it and try again, or choose a different installation directory (using the -d or --install-dir option).

簡単なインストール MySQLdb でも同じエラーが発生します (同じパラメータを使用)。

何が足りないのでしょうか?

関連情報