I've spent hours trying to make Django work on my computer. The problem is that I can't install the mysql-python package. I'm running Windows 7 64bit. This is what I've tried:
- I have downloaded easy_install
- I have downloaded Cygwin64 to be able to run Linux commands (Win cmd was driving me crazy)
- I have typed in: easy_install mysql-python (gave me an error message saying it can't find vcvarsall.bat)
- I have downloaded Visual Studio 2010. However, I uninstalled it since I found out that I had some other version of it already (it didn't solve the problem)
EDIT: I discovered this: https://pypi.python.org/pypi/MySQL-python/1.2.5. Does this mean I can't run Django with python 3.3? And why bother to go through all this work if there is an .exe-file out there?
-
install PIP pip-installer.org/en/latest/installing.html and use this to install packages. Also make sure that all the python files that you are running are added to your Path environment variable. That may be why it says that "vcvarsall.bat" is not found. You should be able to use MySQL / Django / Python 3.3 fine with no issues. They are all supported and work together.Aaron Lelevier– Aaron Lelevier2014年01月29日 19:18:47 +00:00Commented Jan 29, 2014 at 19:18
-
1Thanks Aron! I have now downloaded PIP. However, I get the exact same error message when typing: pip install mysql-python. What python files do you mean I need to add to my path?Myone– Myone2014年01月29日 19:41:48 +00:00Commented Jan 29, 2014 at 19:41
-
Please see my answer below. That should get MySQL running for you.Aaron Lelevier– Aaron Lelevier2014年01月29日 20:50:52 +00:00Commented Jan 29, 2014 at 20:50
11 Answers 11
try running the following command:
pip install mysqlclient
6 Comments
If you are trying to use mysqlclient on WINDOWS with this failure, try to install the lower version instead:
pip install mysqlclient==1.3.4
4 Comments
if you use the site http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python , download the file:
mysqlclient‐1.3.6‐cp34‐none‐win32.whl or
mysqlclient‐1.3.6‐cp34‐none‐win_amd64.whl
depending on the version of python you have (these are for python 3.4) and the type of windows you have (x64 or x32)
extract this file into C:\Python34\Lib\site-packages and your project will work
There are windows installers for MySQLdb avaialable for both 32 and 64 bit, supporting Python from 2.6 to 3.4. Check here.
1 Comment
You're going to want to add Python to your Path Environment Variable in this way. Go to:
- My Computer
- System Properties
- Advance System Settings
- Under the "Advanced" tab click the button that says "Environment Variables"
- Then under System Variables you are going to want to add / change the following variables:
PYTHONPATHandPath. Here is a paste of what my variables look like:
PYTHONPATH
C:\Python27;C:\Python27\Lib\site-packages;C:\Python27\Lib;C:\Python27\DLLs;C:\Python27\Lib\lib-tk;C:\Python27\Scripts
Path
C:\Program Files\MySQL\MySQL Utilities 1.3.5\;C:\Python27;C:\Python27\Lib\site-packages;C:\Python27\Lib;C:\Python27\DLLs;C:\Python27\Lib\lib-tk;C:\Python27\Scripts
Your Path's might be different, so please adjust them, but this configuration works for me and you should be able to run MySQL after making these changes.
10 Comments
For folks using Python 3.0+ (which should be everyone now):
Unfortunately, MySQL-Python 1.2.5 does not support Python 3.0+ yet (which is kinda unreasonable IMHO, Python 3+ has been out for a while). Reference : https://pypi.python.org/pypi/MySQL-python/1.2.5
So, my workaround is to use Oracle's MySQL connector. In settings.py, change DATABASE's 'ENGINE' field to: 'ENGINE': 'mysql.connector.django',
More info could be found in the last paragraph of the first answer to this question: Setting Django up to use MySQL
Hope this helps!!
1 Comment
I have a slightly different setup, but think my solution will help you out.
I have a Windows 8 Machine, Python 2.7 installed and running my stuff through eclipse.
Some Background:
When I did an easy install it tries to install MySQL-python 1.2.5 which failed with an error: Unable to find vcvarsall.bat. I did an easy_install of pip and tried the pip install which also failed with a similar error. They both reference vcvarsall.bat which is something to do with visual studio, since I don't have visual studio on my machine, it left me looking for a different solution, which I share below.
The Solution:
- Reinstall python 2.7.8 from 2.7.8 from https://www.python.org/download this will add any missing registry settings, which is required by the next install.
- Install 1.2.4 from http://pypi.python.org/pypi/MySQL-python/1.2.4
After I did both of those installs I was able to query my MySQL db through eclipse.
Comments
MySqldb python install windows
MySQL-python 1.2.3 for Windows and Python 2.7, 32bit and 64bit versions
Comments
If you encounter the problem with missing MS VC 14 Build tools while trying pip install mysqlclient a possible solution for this may be https://stackoverflow.com/a/51811349/1552410
Comments
Just Download mysqlclient from here https://www.lfd.uci.edu/~gohlke/pythonlibs/ be careful while downloading the right version depending on your your python version installed. Then proceed with the import. It worked for me because in my case the error was telling to install Visual Studio C++ 14.0 something which wasted my time and occupied around 10GB of space in my C drive. So recommending installing mysqlclient using pip install mysqlclient
Comments
For phpmydamin you can use following step
Go to python install path like
cd C:\Users\Enamul\AppData\Local\Programs\Python\Python37-32\ScriptsRun the command
pip install PyMySQLIn the python shell import library like
import pymysqlconnection to databasbe
db = pymysql.connect(host='localhost',user='root',passwd='yourpassword', database="bd")get cursor
cursor = db.cursor()Create table like
cursor.execute("CREATE TABLE customers (name VARCHAR(255), address VARCHAR(255))")