How To Install Python Libraries in QGIS Environment

--

Sometimes, built-in python libraries in QGIS is not enough. You can install additional libraries using these tricks.

For Windows, use OSGeo4W Network Installer.

  1. Open OSGeo4W.bat in your QGIS installation root folder
  2. 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.

--

--

No responses yet