|
You are here |
willhaley.com | ||
| | | | |
zignar.net
|
|
| | | | | Personal weblog about programming, linux, life, the universe and everything | |
| | | | |
blog.nuculabs.de
|
|
| | | | | Hello, ?? In this article I will show you how to install Python versions on Linux using the following methods: compiling from source, dead snakes ppa and pyenv. To make things easier, if you want to follow along in an environment that you can break, you can create a local Kubernetes cluster using Minikube. Next, I'm going to use the following yaml file to create an Ubuntu pod: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 apiVersion: v1 kind: Pod metadata: name: ubuntu labels: app: ubuntu spec: containers: - image: ubuntu command: - "sleep" - "604800" imagePullPolicy: IfNotPresent name: ubuntu restartPolicy: Always Save the above yaml in a file ubuntu_pod.yaml and run: | |
| | | | |
blog.chand1012.dev
|
|
| | | | | This is a series on Python and how to correctly use Python when coming from a background in another computer language. Because of this, this will not be a slow intro into programming and it will be assumed you have a preferred text editor and are smart enough to get Python running. You can download installers and packages from their official website found here. Basic knowledge of how to use Git and how to operate a computer is also preferred. | |
| | | | |
blog.ionelmc.ro
|
|
| | | Thoughts on the "build" part of packaging - Packaging is currently too hard in Python, and while there's effort to improve it, it's still largely focused on the problem of installing. The... | ||