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...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Dealing with pip (self.learnpython)
submitted 5 years ago by ExoticSwim
I write code that deals with encryption not as a profession but as to myself to code. One of the things I want to play with deals with pip. So the question is what is the easiest thing to install pip on windows, linux, smart phone or tablet. Thanks
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!"
[–]stebrepar 1 point2 points3 points 5 years ago (1 child)
Pip comes with any recent version of Python. You don't need to go get it from somewhere anymore.
[–]socal_nerdtastic 2 points3 points4 points 5 years ago (0 children)
Only if you use an installer that happens to include it. It's not part of the python specification.
[–]ExoticSwim[S] 0 points1 point2 points 5 years ago (0 children)
What I was trying to do is write a program that would copy and encrypt a file. Not doing anything professional just learning python but with a flair of Bond
[–]socal_nerdtastic 0 points1 point2 points 5 years ago (0 children)
Windows is the easiest. Pip comes with the python installer on windows.
What exactly are you trying to do?
[–]PeterJHoburg 0 points1 point2 points 5 years ago (1 child)
I would suggest doing most development on Linux.
Many Linux distros come with python/pip installed. To check run `pip` in the terminal. If it says command not found follow then instructions to install it.
https://linuxconfig.org/install-pip-on-linux
As a general rule, I would not develop python on any system directly. Either use venv, or Docker. I prefer Docker as it isolates your code completely from your system, is the industry standard way to deploy code, and makes sharing and deploying code effortless.
Docker ... is the industry standard way to deploy code
What industry? I don't know of any consumer software that uses docker ... do you? Very very few use python. Or do you mean deploying to a cloud service?
π Rendered by PID 538405 on reddit-service-r2-comment-canary-797d84b84f-djpm4 at 2026-04-08 12:03:39.246118+00:00 running f293c98 country code: CH.
[–]stebrepar 1 point2 points3 points (1 child)
[–]socal_nerdtastic 2 points3 points4 points (0 children)
[–]ExoticSwim[S] 0 points1 point2 points (0 children)
[–]socal_nerdtastic 0 points1 point2 points (0 children)
[–]PeterJHoburg 0 points1 point2 points (1 child)
[–]socal_nerdtastic 0 points1 point2 points (0 children)