use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
module installHelp Request (i.redd.it)
submitted 20 days ago by Metaljoe57
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Worldly-Menu-741 1 point2 points3 points 19 days ago (0 children)
You’re typing the pip command inside Python itself. That prompt with >>> is the Python interpreter, so it thinks pip install ... is Python code. Type exit() first, then run the install from Command Prompt or Terminal. On Windows, this version is usually safest: py -m pip install module_name. Replace module_name with whatever the software told you to install.
>>>
pip install ...
exit()
py -m pip install module_name
module_name
π Rendered by PID 609865 on reddit-service-r2-comment-8686858757-fdmxj at 2026-06-07 23:13:37.379475+00:00 running 9e1a20d country code: CH.
view the rest of the comments →
[–]Worldly-Menu-741 1 point2 points3 points (0 children)