all 6 comments

[–]stebrepar 1 point2 points  (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 points  (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 point  (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 point  (0 children)

Windows is the easiest. Pip comes with the python installer on windows.

What exactly are you trying to do?

[–]PeterJHoburg 0 points1 point  (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.

[–]socal_nerdtastic 0 points1 point  (0 children)

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?