3

I need to use GniPlannerFTTH, but this plugin does not work without the Openpyxl python library installed. How can I install Openpyxl in QGIS?

enter image description here

Yibán
  • 31
  • 1
  • 3

1 Answers1

3

One way using QGIS is:

  • Open Python QGIS Console And:

    import pip
    pip.main(['install', 'Openpyxl'])
    

or in a cmd:

pip install openpyxl

Fran Raga
  • 7,838
  • 3
  • 26
  • 47
  • Ip?are you sure that write corret pip name? – Fran Raga Jan 30 '18 at 21:05
  • Make sure your target is correct if you have more than one Python version installed. pip install --target="C:\Program Files\QGIS 3.4\apps\Python37\Lib\site-packages" openpyxl – Cary H Jan 11 '19 at 19:58
  • WARNING: You are using pip version 21.2.4; however, version 22.1.2 is available. You should consider upgrading via the 'C:\ProgrammiAC\QGIS3.16\bin\qgis-ltr-bin.exe -m pip install --upgrade pip' command.

    What does it mean the last sentence. Can someone translate in easier words?

    – simone100 Jul 13 '22 at 13:14