pip error: option —single-version-externally-managed not recognized
При попытке установки mysql-connector на одном из серверов FreeBSD, при помощи:
1 |
pip install mysql-connector |
Получил ошибку:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
root@phaeton:/usr/local/etc/raddb/mods-config# pip install mysql-connector DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. Collecting mysql-connector Using cached https://files.pythonhosted.org/packages/8e/78/049f747325ce0154263cd1b10fe7ea9ddb17e839111c6f8f824d5964cfb5/mysql-connector-2.2.8.tar.gz Installing collected packages: mysql-connector Running setup.py install for mysql-connector ... error Complete output from command /usr/local/bin/python2.7 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-MpZe2P/mysql-connector/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-GA8HB9/install-record.txt --single-version-externally-managed --compile: usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: -c --help [cmd1 cmd2 ...] or: -c --help-commands or: -c cmd --help error: option --single-version-externally-managed not recognized ---------------------------------------- Command "/usr/local/bin/python2.7 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-MpZe2P/mysql-connector/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-GA8HB9/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-MpZe2P/mysql-connector/ |
Решение:
1 2 |
pip install -U setuptools pip install -U wheel |