Yes you can:
Just install
AccessDatabaseEngine_X64.exe /passive
(which contains both the x86 and x64 version of the drivers) and you will be okay. Do not forget the /passive
option because if you do it won't install unless you have MS Office 2010 installed as well. You can download the file from the Microsoft Access Database Engine 2010 Redistributable site
After you install AccessDatabaseEngine_X64.exe
you should run the following code on your python shell to test everything's okay:
import pyodbc
[x for x in pyodbc.drivers() if x.startswith('Microsoft')]
and you should get a printout like
['Microsoft Access Driver (*.mdb, *.accdb)',
'Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)',
'Microsoft Access dBASE Driver (*.dbf, *.ndx, *.mdx)',
'Microsoft Access Text Driver (*.txt, *.csv)']
Take care.