46

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?

Taras
  • 32,823
  • 4
  • 66
  • 137
Devdatta Tengshe
  • 41,311
  • 35
  • 139
  • 263
  • I remember something about this on the user list.But can't find it now it seems like one of the devs said they could just place them in tthe plugin folder (unpacked). I'll keep looking – Brad Nesom Jun 07 '12 at 04:49

1 Answers1

57

For QGIS 3 (see the Changelog for QGIS 3.0)

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

Taras
  • 32,823
  • 4
  • 66
  • 137
Nathan W
  • 34,706
  • 5
  • 97
  • 148
  • 14
    A reminder for anyone else who does this: Do remember to enable the plugin from 'Manage Plugins' Menu. Without it, the plugin won't be visible on the UI. – Devdatta Tengshe Jun 08 '12 at 14:33
  • 5
    C:\Users\{username}\.qgis\... – Nathan W Jan 07 '13 at 06:23
  • @NathanW it works : ) – Sunil Jan 10 '13 at 13:24
  • 1
    QGIS 2.0 or 2.0.1 the folder is now: - "QGIS Dufour\apps\qgis\python\plugins" – tobias47n9e Oct 11 '13 at 13:40
  • 8
    No the folder is C:\Users\{username}\.qgis2\. Don't install into the QGIS Dufour folder. – Nathan W Oct 11 '13 at 21:50
  • using QGIS 2.14.1 , didnt find plugin folder – Muhammad Faizan Khan Aug 30 '16 at 06:48
  • 1
    Note: on a mac the folders containing the QGIS plugins are hidden. you will have to reveal them. Reference from comment on - https://gis.stackexchange.com/questions/227057/where-is-the-plugins-folder-in-macos – dustinturp Jul 03 '17 at 18:15
  • After doing what @NathanW suggested, I compiled my resources file and put it in the folder with my other plugins. But I cannot find it in the Plugin Manager. I made sure to enable experimental plugins, reloaded the repository, checked to make sure the version is correct. Any suggestion? – Erich Purpur Jan 09 '19 at 17:05
  • For me the right folder was => C:\Users<Name>\AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins. Then I activated it in the "Manage and Install Plugins" Menu. Windows 10 Qgis 3.22 – Xavier Michael Nov 04 '21 at 11:50