pip install sqlalchemy should be able to install all dependences that it needs.
However, it complains No module named MySQLdb. I found that MySQLdb is only for python2. What is up here?
Asked
Active
Viewed 6,769 times
2
Ilja Everilä
- 45,748
- 6
- 100
- 105
Tiina
- 3,585
- 4
- 38
- 64
-
1Please avoid posting images of text. – Ilja Everilä Apr 01 '19 at 10:54
2 Answers
5
please install this mysqlclient using the command pip install mysqlclient mysqldb deprecated in python3 mysqlclient is the fork of mysqldb and added
python3 support
Nakul Narayanan
- 1,252
- 12
- 16