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;
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
|
show 1 more comment
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
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. Assumingpip 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
|
show 1 more comment
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
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
python python-2.7 pip
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. Assumingpip 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
|
show 1 more comment
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. Assumingpip 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
|
show 1 more comment
1 Answer
1
active
oldest
votes
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()
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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()
add a comment |
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()
add a comment |
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()
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()
edited Mar 29 at 3:46
answered Mar 29 at 3:15
TheMastTheMast
237
237
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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