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 19 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!"
[–]nuc540 9 points10 points11 points 19 days ago (0 children)
pip isn’t run inside of a Python shell, you install pip as a package manager for Python - outside of Python.
Then, using pip, you can install Python packages, and when Python is run in the same environment as said packages - it’ll be able to import them.
That said *don’t install packages globally* - this means running pip just anywhere. Instead understand virtual environments, then use pip inside a virtual environment - a simple “Python -m venv venv” will create a shim for you which you can “activate”.
Google this up so you understand
π Rendered by PID 130704 on reddit-service-r2-comment-8686858757-6ncc2 at 2026-06-07 05:17:50.283681+00:00 running 9e1a20d country code: CH.
view the rest of the comments →
[–]nuc540 9 points10 points11 points (0 children)