在没有root的情况下为python安装MySQLdb模块时出现权限错误

在没有root的情况下为python安装MySQLdb模块时出现权限错误

我没有机器(Linux)的 root 访问权限,但我想为 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 会出现相同的错误(使用相同的参数)。

我错过了什么?

相关内容