How To Install Python Libraries in QGIS Environment
Jan 9, 2021
Sometimes, built-in python libraries in QGIS is not enough. You can install additional libraries using these tricks.
For Windows, use OSGeo4W Network Installer.
- Open OSGeo4W.bat in your QGIS installation root folder
- Run this commands, let’s say we’re going to install pandas and matplotlib
>py3_env
>python -m pip install pandas, matplotlib
>python -m pip list
Done.