python - 出现错误 "error: command ' cl.exe' 失败 : No such file or directory"

标签 python mysql pip installation cl.exe

尝试安装mysql-python

C:\Users\Одиночка>pip install mysql-python
Collecting mysql-python
  Using cached MySQL-python-1.2.5.zip
Installing collected packages: mysql-python
  Running setup.py install for mysql-python ... error
    Complete output from command c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\2871~1\\appdata\\local\\temp\\pip-build-lyj5ba\\mysql-python\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\2871~1\appdata\local\temp\pip-y0f9do-record\install-record.txt --single-version-externally-managed --compile:
    running install
    running build
    running build_py
    creating build
    creating build\lib.win32-2.7
    copying _mysql_exceptions.py -> build\lib.win32-2.7
    creating build\lib.win32-2.7\MySQLdb
    copying MySQLdb\__init__.py -> build\lib.win32-2.7\MySQLdb
    copying MySQLdb\converters.py -> build\lib.win32-2.7\MySQLdb
    copying MySQLdb\connections.py -> build\lib.win32-2.7\MySQLdb
    copying MySQLdb\cursors.py -> build\lib.win32-2.7\MySQLdb
    copying MySQLdb\release.py -> build\lib.win32-2.7\MySQLdb
    copying MySQLdb\times.py -> build\lib.win32-2.7\MySQLdb
    creating build\lib.win32-2.7\MySQLdb\constants
    copying MySQLdb\constants\__init__.py -> build\lib.win32-2.7\MySQLdb\constants
    copying MySQLdb\constants\CR.py -> build\lib.win32-2.7\MySQLdb\constants
    copying MySQLdb\constants\FIELD_TYPE.py -> build\lib.win32-2.7\MySQLdb\constants
    copying MySQLdb\constants\ER.py -> build\lib.win32-2.7\MySQLdb\constants
    copying MySQLdb\constants\FLAG.py -> build\lib.win32-2.7\MySQLdb\constants
    copying MySQLdb\constants\REFRESH.py -> build\lib.win32-2.7\MySQLdb\constants
    copying MySQLdb\constants\CLIENT.py -> build\lib.win32-2.7\MySQLdb\constants
    running build_ext
    building '_mysql' extension
    creating build\temp.win32-2.7
    creating build\temp.win32-2.7\Release
    cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Dversion_info=(1,2,5,'final',1) -D__version__=1.2.5 "-IC:\Program Files (x86)\MySQL\MySQL Connector C 6.0.2\include" -Ic:\python27\include -Ic:\python27\PC /Tc_mysql.c /Fobuild\temp.win32-2.7\Release\_mysql.obj /Zl
    error: command 'cl.exe' failed: No such file or directory

最佳答案

我也遇到这个问题了。我也尝试了网上列出的方法,但不起作用。在计算机中使用 cl.exe 安装 Microsoft Visual Studio 或将 C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin"添加到 PATH。对我来说不起作用。然后中间显示错误错误消息:

error: command 'cl.exe' failed: No such file or directory
.---------------------------------------- Failed building wheel for Twisted Running setup.py clean for Twisted Failed to build Twisted

它提到了 Twisted,所以我先安装了 Twisted,它成功了。 您可以在以下链接中安装正确版本的 Twisted: Unofficial Windows Binaries for Python Extension Packages

关于python - 出现错误 "error: command ' cl.exe' 失败 : No such file or directory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41840344/

相关文章:

python - pip install 在带有 python27 interperter 的 virtualenv 中存在 SSL 问题

python - 追加 CSV 文件,匹配无序列

python - 无法在新的 ubuntu 笔记本电脑中正确安装 python 包

mysql - 如何处理 "InnoDB: page_cleaner: 1000ms intended loop took 0ms"?

php - mysql在单个表的where条件下的多行值

java - 在 java 中执行 mysql 行时出错

python - 使用 libcurl4 导入 pycurl 会引发 ImportError

pip - ModuleNotFoundError : No module named 'talib'

Python 和对象矩阵

python - SQLALCHEMY:当只知道 DSN 时如何连接到数据库?