Install QGIS Plugins Offline – How to Install QGIS Plugin When Offline

installationofflineqgisqgis-plugins

Due to various IT policies at my workplace, QGIS is installed on a machine that is not connected to the Internet. I wish to install a couple of QGIS plugins on this system.

I have downloaded the required plugins from http://pyqgis.org/repo/contributed. How do I install them in QGIS?

Best Answer

For QGIS 3: When QGIS 3 is released it will contain a "Install from Zip" menu item to remove the need for you to manually do it.


You can just extract them into the .qgis/python/plugins folder in your home directory.
If you are using QGIS 1.9.0. (available as nightly build) you need to extract the archive into .qgis2/python/plugins instead.

The folder structure should look like this:

.qgis
├── python
│   └── plugins
│        └──plugin folder
│        └──plugin folder
│        └──plugin folder

For example this is an extract of what mine looks like:

enter image description here

Related Question