How to show messages during PIP install without --verbose argumentHow do I check whether a file exists without exceptions?How to print without newline or space?How do I install pip on Windows?pip install mysql-python fails with EnvironmentError: mysql_config not foundInstalling specific package versions with pipHow to install psycopg2 with “pip” on Python?How to install packages using pip according to the requirements.txt file from a local directory?Find which version of package is installed with pipHow do I install pip on macOS or OS X?pip install from git repo branch

Will a coyote attack my dog on a leash while I'm on a hiking trail?

Jesus' words on the Jews

What's the difference between "за ... от" and "в ... от"?

Entering the UK as a British citizen who is a Canadian permanent resident

Would an 8% reduction in drag outweigh the weight addition from this custom CFD-tested winglet?

As programers say: Strive to be lazy

German characters on US-International keyboard layout

Why is a set not a partition of itself?

LWC1513: @salesforce/resourceUrl modules only support default imports

Solubility in different pressure conditions

Where to find every-day healthy food near Heathrow Airport?

declared variable inside void setup is forgotten in void loop

What are the implications of the new alleged key recovery attack preprint on SIMON?

Why do the lights go out when someone enters the dining room on this ship?

correct spelling of "carruffel" (fuzz, hustle, all that jazz)

In books, how many dragons are there in present time?

using `is` operator with value type tuples gives error

If current results hold, Man City would win PL title

How can a layman easily get the consensus view of what academia *thinks* about a subject?

On studying Computer Science vs. Software Engineering to become a proficient coder

Why does my circuit work on a breadboard, but not on a perfboard? I am new to soldering

Forgoing Enlightenment

Is there anything special about -1 (0xFFFFFFFF) regarding ADC?

Can't find the release for this wiring harness connector



How to show messages during PIP install without --verbose argument


How do I check whether a file exists without exceptions?How to print without newline or space?How do I install pip on Windows?pip install mysql-python fails with EnvironmentError: mysql_config not foundInstalling specific package versions with pipHow to install psycopg2 with “pip” on Python?How to install packages using pip according to the requirements.txt file from a local directory?Find which version of package is installed with pipHow do I install pip on macOS or OS X?pip install from git repo branch






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-1















Print statements are not shown to the user from setup.py. What method could be used to show print statements without using --verbose argument through PIP with sdists distribution?



I've tried writing to stderr.



Method One



import logging
logging.basicConfig(format='%(message)s')
logging.warning('I print to stderr by default')


Method Two



from __future__ import print_function

def myprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)

myprint("Print to stderr")









share|improve this question
























  • Do you distribute your package as a wheel? In that case your post-install will be run at packaging time but not at installation time, so the message will be useless anyway.

    – phd
    Mar 23 at 14:50












  • I've tested the package. The post install script runs at install time after dependencies are installed. Assuming pip install -e C:absolutepathtopackage -v is representative.

    – TheMast
    Mar 23 at 15:12












  • I removed references about the postscript as it detracts from the intent of the question.

    – TheMast
    Mar 23 at 15:23











  • Source distribution? Yes, for sdists it could work, but not for wheels.

    – phd
    Mar 23 at 15:39











  • The source distribution is sdist.

    – TheMast
    Mar 23 at 15:51

















-1















Print statements are not shown to the user from setup.py. What method could be used to show print statements without using --verbose argument through PIP with sdists distribution?



I've tried writing to stderr.



Method One



import logging
logging.basicConfig(format='%(message)s')
logging.warning('I print to stderr by default')


Method Two



from __future__ import print_function

def myprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)

myprint("Print to stderr")









share|improve this question
























  • Do you distribute your package as a wheel? In that case your post-install will be run at packaging time but not at installation time, so the message will be useless anyway.

    – phd
    Mar 23 at 14:50












  • I've tested the package. The post install script runs at install time after dependencies are installed. Assuming pip install -e C:absolutepathtopackage -v is representative.

    – TheMast
    Mar 23 at 15:12












  • I removed references about the postscript as it detracts from the intent of the question.

    – TheMast
    Mar 23 at 15:23











  • Source distribution? Yes, for sdists it could work, but not for wheels.

    – phd
    Mar 23 at 15:39











  • The source distribution is sdist.

    – TheMast
    Mar 23 at 15:51













-1












-1








-1








Print statements are not shown to the user from setup.py. What method could be used to show print statements without using --verbose argument through PIP with sdists distribution?



I've tried writing to stderr.



Method One



import logging
logging.basicConfig(format='%(message)s')
logging.warning('I print to stderr by default')


Method Two



from __future__ import print_function

def myprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)

myprint("Print to stderr")









share|improve this question
















Print statements are not shown to the user from setup.py. What method could be used to show print statements without using --verbose argument through PIP with sdists distribution?



I've tried writing to stderr.



Method One



import logging
logging.basicConfig(format='%(message)s')
logging.warning('I print to stderr by default')


Method Two



from __future__ import print_function

def myprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)

myprint("Print to stderr")






python python-2.7 pip






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 20:23







TheMast

















asked Mar 23 at 13:18









TheMastTheMast

237




237












  • Do you distribute your package as a wheel? In that case your post-install will be run at packaging time but not at installation time, so the message will be useless anyway.

    – phd
    Mar 23 at 14:50












  • I've tested the package. The post install script runs at install time after dependencies are installed. Assuming pip install -e C:absolutepathtopackage -v is representative.

    – TheMast
    Mar 23 at 15:12












  • I removed references about the postscript as it detracts from the intent of the question.

    – TheMast
    Mar 23 at 15:23











  • Source distribution? Yes, for sdists it could work, but not for wheels.

    – phd
    Mar 23 at 15:39











  • The source distribution is sdist.

    – TheMast
    Mar 23 at 15:51

















  • Do you distribute your package as a wheel? In that case your post-install will be run at packaging time but not at installation time, so the message will be useless anyway.

    – phd
    Mar 23 at 14:50












  • I've tested the package. The post install script runs at install time after dependencies are installed. Assuming pip install -e C:absolutepathtopackage -v is representative.

    – TheMast
    Mar 23 at 15:12












  • I removed references about the postscript as it detracts from the intent of the question.

    – TheMast
    Mar 23 at 15:23











  • Source distribution? Yes, for sdists it could work, but not for wheels.

    – phd
    Mar 23 at 15:39











  • The source distribution is sdist.

    – TheMast
    Mar 23 at 15:51
















Do you distribute your package as a wheel? In that case your post-install will be run at packaging time but not at installation time, so the message will be useless anyway.

– phd
Mar 23 at 14:50






Do you distribute your package as a wheel? In that case your post-install will be run at packaging time but not at installation time, so the message will be useless anyway.

– phd
Mar 23 at 14:50














I've tested the package. The post install script runs at install time after dependencies are installed. Assuming pip install -e C:absolutepathtopackage -v is representative.

– TheMast
Mar 23 at 15:12






I've tested the package. The post install script runs at install time after dependencies are installed. Assuming pip install -e C:absolutepathtopackage -v is representative.

– TheMast
Mar 23 at 15:12














I removed references about the postscript as it detracts from the intent of the question.

– TheMast
Mar 23 at 15:23





I removed references about the postscript as it detracts from the intent of the question.

– TheMast
Mar 23 at 15:23













Source distribution? Yes, for sdists it could work, but not for wheels.

– phd
Mar 23 at 15:39





Source distribution? Yes, for sdists it could work, but not for wheels.

– phd
Mar 23 at 15:39













The source distribution is sdist.

– TheMast
Mar 23 at 15:51





The source distribution is sdist.

– TheMast
Mar 23 at 15:51












1 Answer
1






active

oldest

votes


















0














A very ugly workaround is to log to a log_file instead of print. Then read the output of the log file in a new window.



import os
import logging

logging.basicConfig(format='%(message)s')
log = logging.getLogger()
log.addHandler(logging.FileHandler("install.log", "w"))


log.warning("nThis is a test.n" "Logging messagesn" "End of logn")

def display():
logpath = (os.getcwd() + "install.log")
cmd_command = ('type ' + logpath)
print cmd_command
os.system("start /wait cmd /k " + cmd_command)

def main():
display()
pass

if __name__ == '__main__':
main()






share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    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: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    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%2fstackoverflow.com%2fquestions%2f55314126%2fhow-to-show-messages-during-pip-install-without-verbose-argument%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














    A very ugly workaround is to log to a log_file instead of print. Then read the output of the log file in a new window.



    import os
    import logging

    logging.basicConfig(format='%(message)s')
    log = logging.getLogger()
    log.addHandler(logging.FileHandler("install.log", "w"))


    log.warning("nThis is a test.n" "Logging messagesn" "End of logn")

    def display():
    logpath = (os.getcwd() + "install.log")
    cmd_command = ('type ' + logpath)
    print cmd_command
    os.system("start /wait cmd /k " + cmd_command)

    def main():
    display()
    pass

    if __name__ == '__main__':
    main()






    share|improve this answer





























      0














      A very ugly workaround is to log to a log_file instead of print. Then read the output of the log file in a new window.



      import os
      import logging

      logging.basicConfig(format='%(message)s')
      log = logging.getLogger()
      log.addHandler(logging.FileHandler("install.log", "w"))


      log.warning("nThis is a test.n" "Logging messagesn" "End of logn")

      def display():
      logpath = (os.getcwd() + "install.log")
      cmd_command = ('type ' + logpath)
      print cmd_command
      os.system("start /wait cmd /k " + cmd_command)

      def main():
      display()
      pass

      if __name__ == '__main__':
      main()






      share|improve this answer



























        0












        0








        0







        A very ugly workaround is to log to a log_file instead of print. Then read the output of the log file in a new window.



        import os
        import logging

        logging.basicConfig(format='%(message)s')
        log = logging.getLogger()
        log.addHandler(logging.FileHandler("install.log", "w"))


        log.warning("nThis is a test.n" "Logging messagesn" "End of logn")

        def display():
        logpath = (os.getcwd() + "install.log")
        cmd_command = ('type ' + logpath)
        print cmd_command
        os.system("start /wait cmd /k " + cmd_command)

        def main():
        display()
        pass

        if __name__ == '__main__':
        main()






        share|improve this answer















        A very ugly workaround is to log to a log_file instead of print. Then read the output of the log file in a new window.



        import os
        import logging

        logging.basicConfig(format='%(message)s')
        log = logging.getLogger()
        log.addHandler(logging.FileHandler("install.log", "w"))


        log.warning("nThis is a test.n" "Logging messagesn" "End of logn")

        def display():
        logpath = (os.getcwd() + "install.log")
        cmd_command = ('type ' + logpath)
        print cmd_command
        os.system("start /wait cmd /k " + cmd_command)

        def main():
        display()
        pass

        if __name__ == '__main__':
        main()







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 29 at 3:46

























        answered Mar 29 at 3:15









        TheMastTheMast

        237




        237





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • 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%2fstackoverflow.com%2fquestions%2f55314126%2fhow-to-show-messages-during-pip-install-without-verbose-argument%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

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현