1) Python Add-In Basics

Поделиться
HTML-код
  • Опубликовано: 3 дек 2024

Комментарии • 7

  • @davidbierman5717
    @davidbierman5717 9 лет назад +1

    This was a great tutorial. Thank you for posting this on youtube!

  • @zapy422
    @zapy422 4 года назад

    Can we add adding to Microsoft word using Python?

  • @DataJuggler
    @DataJuggler 3 года назад

    When I double click on MakeAddin.py, Visual Studio opens. What software is expected to run this? Any ideas?

    • @tehdreamer
      @tehdreamer 2 года назад

      you need to run this in command line using "python makeaddin.py". python command will only work if you added python.exe path in your windows environment path variables. Otherwise you need to give full path to python.exe. In VS code you can just run the file in top right corner there is a button

    • @DataJuggler
      @DataJuggler 2 года назад

      @@tehdreamer I don't even remember what video this is for, but I already purged this information.

  • @soroushsaravani1159
    @soroushsaravani1159 4 года назад

    thank you for this helpful tutorial.
    when I click on makeaddin.py nothing happens and no .esriaddin file is created
    what is the problem?

    • @tehdreamer
      @tehdreamer 2 года назад

      you might need to amend the makeaddin.py, depending your version of python. There is a print statement thats in "print variable" format. I needed to change mine to "print(variable)" format due to syntax change in Python versions