Explore >> Select a destination


You are here

devopsspiral.com
| | blog.nuculabs.de
3.9 parsecs away

Travel
| | 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:
| | www.buildahomelab.com
4.0 parsecs away

Travel
| | How to Install Ansible with pipenv and pyenv. Pipenv gives a lot of flexibility over ansible project versioning.
| | github.com
4.6 parsecs away

Travel
| | Simple Python version management. Contribute to pyenv/pyenv development by creating an account on GitHub.
| | jaketae.github.io
15.9 parsecs away

Travel
| As a novice who just started learning Python just three months ago, I was clueless about what virtual environments were. All I knew was that Anaconda was purportedly a good way to download and use Python, in particular because it came with many scientific packages pre-installed. I faintly remember reading somewhere that Anaconda came with conda, a package manager, but I didn't really dig much into it because I was busy learning the Python language to begin with. I wasn't interested in the complicated details-I just wanted to learn how to use this language to start building and graphing and calculating.