Python AddIns Installation Tool Not Showing After Double Clicking on makeaddin.py The Next CEO...

Finitely generated matrix groups whose eigenvalues are all algebraic

subequations: How to continue numbering within subequation?

What does this strange code stamp on my passport mean?

Are British MPs missing the point, with these 'Indicative Votes'?

Compilation of a 2d array and a 1d array

Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico

Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?

Noise during hard braking

Cannot restore registry to default in Windows 10?

Is it a bad idea to plug the other end of ESD strap to wall ground?

What did the word "leisure" mean in late 18th Century usage?

MT "will strike" & LXX "will watch carefully" (Gen 3:15)?

Another proof that dividing by 0 does not exist -- is it right?

Masking layers by a vector polygon layer in QGIS

What day is it again?

Is it okay to majorly distort historical facts while writing a fiction story?

Could you use a laser beam as a modulated carrier wave for radio signal?

Shortening a title without changing its meaning

Compensation for working overtime on Saturdays

Can a PhD from a non-TU9 German university become a professor in a TU9 university?

How do I secure a TV wall mount?

Free fall ellipse or parabola?

Why does freezing point matter when picking cooler ice packs?

How dangerous is XSS



Python AddIns Installation Tool Not Showing After Double Clicking on makeaddin.py



The Next CEO of Stack OverflowMaking Python Add-Ins for ArcMap after installing ArcGIS Pro prevents double-click running of makeaddin.py at Python 2.x?Re-compiling Python Addin after editing script?Using deactivate function of ArcGIS Python Add-in Tool?Making Python Add-Ins for ArcMap after installing ArcGIS Pro prevents double-click running of makeaddin.py at Python 2.x?Get filepath then append a feature class to that feature class Python AddinsPython Add-in using arcpy.mapping.ListLayers() does not update when run multiple timesPython Add-In will not runRefreshing Python AddIn combobox => TypeError: unbound method refresh() must be called with <class> instance as first argument (got nothing instead)?Error Handling within Python AddIns?Update python add in tool?Get Path of my toolboxes ESRI addins Python 2.7












1















I am using Python Add-In Wizard with ArcGIS 10.4.1 but after getting the files I am not able to create installation Wizard!



enter image description here



I tried to create the wizard by double clicking on the enter image description here looks like something running but No installation file generated at the directory! can you please let me know why this is happening?




Update




import arcpy
import pythonaddins

class ButtonClass3(object):
"""Implementation for ESRI Addin Python_addin.button (Button)"""
def __init__(self):
self.enabled = True
self.checked = False
def onClick(self):
pass

class ComboBoxClass1(object):
"""Implementation for ESRI Addin Python_addin.combobox (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass

class ComboBoxClass2(object):
"""Implementation for ESRI Addin Python_addin.combobox_1 (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass









share|improve this question
















bumped to the homepage by Community 18 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • hmm. what does the python script inside your Install folder look like?

    – Carolyn
    May 19 '17 at 21:48











  • Please take a look at update Carolyn

    – Behseini
    May 19 '17 at 21:52






  • 1





    Well, that looks right to me, though I'm usually just using a def onClick(self) in mine... There might be some issue with the python version you're using - have you checked this answer yet? gis.stackexchange.com/questions/155012/…

    – Carolyn
    May 19 '17 at 22:01











  • well, here is what I got 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] by running the print (sys.version)

    – Behseini
    May 19 '17 at 22:51











  • Run it from the command prompt (or your IDE or whatever) instead of double-clicking it. That way the window will stay open and you can see any errors

    – mikewatt
    Aug 27 '18 at 16:26
















1















I am using Python Add-In Wizard with ArcGIS 10.4.1 but after getting the files I am not able to create installation Wizard!



enter image description here



I tried to create the wizard by double clicking on the enter image description here looks like something running but No installation file generated at the directory! can you please let me know why this is happening?




Update




import arcpy
import pythonaddins

class ButtonClass3(object):
"""Implementation for ESRI Addin Python_addin.button (Button)"""
def __init__(self):
self.enabled = True
self.checked = False
def onClick(self):
pass

class ComboBoxClass1(object):
"""Implementation for ESRI Addin Python_addin.combobox (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass

class ComboBoxClass2(object):
"""Implementation for ESRI Addin Python_addin.combobox_1 (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass









share|improve this question
















bumped to the homepage by Community 18 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • hmm. what does the python script inside your Install folder look like?

    – Carolyn
    May 19 '17 at 21:48











  • Please take a look at update Carolyn

    – Behseini
    May 19 '17 at 21:52






  • 1





    Well, that looks right to me, though I'm usually just using a def onClick(self) in mine... There might be some issue with the python version you're using - have you checked this answer yet? gis.stackexchange.com/questions/155012/…

    – Carolyn
    May 19 '17 at 22:01











  • well, here is what I got 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] by running the print (sys.version)

    – Behseini
    May 19 '17 at 22:51











  • Run it from the command prompt (or your IDE or whatever) instead of double-clicking it. That way the window will stay open and you can see any errors

    – mikewatt
    Aug 27 '18 at 16:26














1












1








1








I am using Python Add-In Wizard with ArcGIS 10.4.1 but after getting the files I am not able to create installation Wizard!



enter image description here



I tried to create the wizard by double clicking on the enter image description here looks like something running but No installation file generated at the directory! can you please let me know why this is happening?




Update




import arcpy
import pythonaddins

class ButtonClass3(object):
"""Implementation for ESRI Addin Python_addin.button (Button)"""
def __init__(self):
self.enabled = True
self.checked = False
def onClick(self):
pass

class ComboBoxClass1(object):
"""Implementation for ESRI Addin Python_addin.combobox (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass

class ComboBoxClass2(object):
"""Implementation for ESRI Addin Python_addin.combobox_1 (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass









share|improve this question
















I am using Python Add-In Wizard with ArcGIS 10.4.1 but after getting the files I am not able to create installation Wizard!



enter image description here



I tried to create the wizard by double clicking on the enter image description here looks like something running but No installation file generated at the directory! can you please let me know why this is happening?




Update




import arcpy
import pythonaddins

class ButtonClass3(object):
"""Implementation for ESRI Addin Python_addin.button (Button)"""
def __init__(self):
self.enabled = True
self.checked = False
def onClick(self):
pass

class ComboBoxClass1(object):
"""Implementation for ESRI Addin Python_addin.combobox (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass

class ComboBoxClass2(object):
"""Implementation for ESRI Addin Python_addin.combobox_1 (ComboBox)"""
def __init__(self):
self.items = ["item1", "item2"]
self.editable = True
self.enabled = True
self.dropdownWidth = 'WWWWWW'
self.width = 'WWWWWW'
def onSelChange(self, selection):
pass
def onEditChange(self, text):
pass
def onFocus(self, focused):
pass
def onEnter(self):
pass
def refresh(self):
pass






arcpy arcgis-10.4 python-addin






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 19 '17 at 23:37









PolyGeo

53.8k1781245




53.8k1781245










asked May 19 '17 at 21:39









BehseiniBehseini

318515




318515





bumped to the homepage by Community 18 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 18 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • hmm. what does the python script inside your Install folder look like?

    – Carolyn
    May 19 '17 at 21:48











  • Please take a look at update Carolyn

    – Behseini
    May 19 '17 at 21:52






  • 1





    Well, that looks right to me, though I'm usually just using a def onClick(self) in mine... There might be some issue with the python version you're using - have you checked this answer yet? gis.stackexchange.com/questions/155012/…

    – Carolyn
    May 19 '17 at 22:01











  • well, here is what I got 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] by running the print (sys.version)

    – Behseini
    May 19 '17 at 22:51











  • Run it from the command prompt (or your IDE or whatever) instead of double-clicking it. That way the window will stay open and you can see any errors

    – mikewatt
    Aug 27 '18 at 16:26



















  • hmm. what does the python script inside your Install folder look like?

    – Carolyn
    May 19 '17 at 21:48











  • Please take a look at update Carolyn

    – Behseini
    May 19 '17 at 21:52






  • 1





    Well, that looks right to me, though I'm usually just using a def onClick(self) in mine... There might be some issue with the python version you're using - have you checked this answer yet? gis.stackexchange.com/questions/155012/…

    – Carolyn
    May 19 '17 at 22:01











  • well, here is what I got 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] by running the print (sys.version)

    – Behseini
    May 19 '17 at 22:51











  • Run it from the command prompt (or your IDE or whatever) instead of double-clicking it. That way the window will stay open and you can see any errors

    – mikewatt
    Aug 27 '18 at 16:26

















hmm. what does the python script inside your Install folder look like?

– Carolyn
May 19 '17 at 21:48





hmm. what does the python script inside your Install folder look like?

– Carolyn
May 19 '17 at 21:48













Please take a look at update Carolyn

– Behseini
May 19 '17 at 21:52





Please take a look at update Carolyn

– Behseini
May 19 '17 at 21:52




1




1





Well, that looks right to me, though I'm usually just using a def onClick(self) in mine... There might be some issue with the python version you're using - have you checked this answer yet? gis.stackexchange.com/questions/155012/…

– Carolyn
May 19 '17 at 22:01





Well, that looks right to me, though I'm usually just using a def onClick(self) in mine... There might be some issue with the python version you're using - have you checked this answer yet? gis.stackexchange.com/questions/155012/…

– Carolyn
May 19 '17 at 22:01













well, here is what I got 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] by running the print (sys.version)

– Behseini
May 19 '17 at 22:51





well, here is what I got 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] by running the print (sys.version)

– Behseini
May 19 '17 at 22:51













Run it from the command prompt (or your IDE or whatever) instead of double-clicking it. That way the window will stay open and you can see any errors

– mikewatt
Aug 27 '18 at 16:26





Run it from the command prompt (or your IDE or whatever) instead of double-clicking it. That way the window will stay open and you can see any errors

– mikewatt
Aug 27 '18 at 16:26










1 Answer
1






active

oldest

votes


















0














I've had a problem with the makeaddin.py file recently and it turned out to be a bug in the file. Make sure the print command near the bottom of the file has parenthesis around "archive file", so Print (archive_file). Doing this fixed my problem.



enter image description here






share|improve this answer
























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "79"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f241091%2fpython-addins-installation-tool-not-showing-after-double-clicking-on-makeaddin-p%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I've had a problem with the makeaddin.py file recently and it turned out to be a bug in the file. Make sure the print command near the bottom of the file has parenthesis around "archive file", so Print (archive_file). Doing this fixed my problem.



    enter image description here






    share|improve this answer




























      0














      I've had a problem with the makeaddin.py file recently and it turned out to be a bug in the file. Make sure the print command near the bottom of the file has parenthesis around "archive file", so Print (archive_file). Doing this fixed my problem.



      enter image description here






      share|improve this answer


























        0












        0








        0







        I've had a problem with the makeaddin.py file recently and it turned out to be a bug in the file. Make sure the print command near the bottom of the file has parenthesis around "archive file", so Print (archive_file). Doing this fixed my problem.



        enter image description here






        share|improve this answer













        I've had a problem with the makeaddin.py file recently and it turned out to be a bug in the file. Make sure the print command near the bottom of the file has parenthesis around "archive file", so Print (archive_file). Doing this fixed my problem.



        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 20 '17 at 6:45









        bperhambperham

        1




        1






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f241091%2fpython-addins-installation-tool-not-showing-after-double-clicking-on-makeaddin-p%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            (145452) 2005 RN43 Классификация | Примечания | Ссылки |...

            Щит и меч (фильм) Содержание Названия серий | Сюжет |...

            Энтрерриос (город) Содержание История | Географическое...