Situatie
The Python sqlalchemy library is among the top 100 Python libraries, with more than 34,523,313 downloads. This tutorial will show you everything you need to get this installed in your Python environment.
Backup
- Type
"cmd"
in the search bar and hitEnter
to open the command line. - Type “
pip install sqlalchemy
” (without quotes) in the command line and hitEnter
again. This installs sqlalchemy for your default Python installation. - The previous command may not work if you have both Python versions 2 and 3 on your computer. In this case, try
"pip3 install sqlalchemy"
or “python -m pip install sqlalchemy
“. - Wait for the installation to terminate successfully. It is now installed on your Windows machine.
Leave A Comment?