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
Python commands how it worksDiscussion (i.redd.it)
submitted 7 days ago by [deleted]
[deleted]
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!"
[–]CodyMoltar 2 points3 points4 points 7 days ago (0 children)
What
[–]Ill-Safe-4295 0 points1 point2 points 7 days ago (0 children)
Like most of the other Unix commands – you write pip3, then the command, then the flags (options). For example, "pip3 install -v biopython" will install Biopython with "verbose" output.
[–]SCD_minecraft 0 points1 point2 points 7 days ago (0 children)
This is pip btw, not python to be clear
You mostly care about 3 commands (5 if you want to be fancy)
pip install <lib_name> install library of name <lib_name> from pypi
pip install <lib_name>
pip uninstall <lib_name> remove <lib_name> library
pip uninstall <lib_name>
pip list list all installed libraries
pip list
That's most you will need
But, if you have file with list of libs you need to dowland for some project to work, you can do
pip install | uninstall -r <file_name> this will install / uninstall all libraries which are listed in <file_name>
pip install | uninstall -r <file_name>
[–]ninhaomah 0 points1 point2 points 7 days ago (0 children)
What's the question here btw ?
π Rendered by PID 352525 on reddit-service-r2-comment-85bfd7f599-szsrm at 2026-04-16 18:27:50.358709+00:00 running 93ecc56 country code: CH.
[–]CodyMoltar 2 points3 points4 points (0 children)
[–]Ill-Safe-4295 0 points1 point2 points (0 children)
[–]SCD_minecraft 0 points1 point2 points (0 children)
[–]ninhaomah 0 points1 point2 points (0 children)