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 8,056 times
2
Ilja Everilä
- 50,538
- 7
- 126
- 127
Tiina
- 4,285
- 7
- 44
- 73
-
1Please avoid posting images of text. – Ilja Everilä Apr 01 '19 at 10:54
2 Answers
7
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,412
- 13
- 17
