I do installed Microsoft Visual C++ 14.0, But while running pip install mysqlclient. Please, can anyone help? Thanks in advance.
1 Answer
pip install mysqlclient:
- In this web download the package https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-client download 32 or 64 version python version based your python version.
- Put it to the directory (virtual folder).
- In command prompt run
pip install mysqlclient‑1.3.13‑cp36‑cp36m‑win_amd64.whl(based on your python version).
Another way: use this command
pip install --only-binary :all: mysqlclient
2 Comments
diek
I have tried pip install --only-binary :all: mysqlclient, it does not work, it errors out with 'no matching dist found for mysqlclient'
Nasa Lee No_Liberty
Put the mysqlclient‑1.3.13‑cp36‑cp36m‑win_amd64.whl in your python's virtual folder.