2018-09-5-關於安裝mysql-python的錯誤
個人部落格地址——https://www.dogebug.cn/
GitHub地址——https://github.com/yanshigou/
layout: post
title: 如何解決windows下mysql-python 安裝報錯的情況
description:
date: 2018-09-05 19:13:00
categories:
comments: true
tags:
- python
- Error
cmd下 pip install mysql-python 報錯
今天在windows使用pycharm連線資料庫時失敗,需要安裝mysql-python
但在安裝mysql-python時報錯:
error: Microsoft Visual C++ 14.0 is required. Get it with “Microsoft Visual C++ Build Tools”: http://landinghub.visualstudio.com/visual-cpp-build-tools
在https://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloud頁面中找到mysql-python
下載到本地進行pip install xxx
但是,接下來又出現了:
試了網上幾種解決方法,終於搞懂為什麼了:
這是Python2.7版本的,需要手動把whl檔名改為cp36(因為我使用的為Python3.6)
接下來就安裝成功了
2018-09-05 19:10 解決完問題
2018-09-05 19:56 解決好markdown格式、圖片顯示等問題;
!!!py3.6使用mysqlclient就完美解決
mysqlclient與mysql-python介面是一樣的
https://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloud 網址下搜尋mysqlclient 找到cp36 下載 安裝 OK!