Explore >> Select a destination


You are here

www.buildahomelab.com
| | vickiboykis.com
4.0 parsecs away

Travel
| | When I'm working with Jupyter notebooks, I often want to work with them from within a virtual environment. The general best practice is that you should always use either virtual environments or Docker containers for working with Python, for reasons outlined in this post, or you're gonna have a bad time. I know I have. The workflow is a little long, so I thought I'd document it for future me here.
| | daniel-m.github.io
3.7 parsecs away

Travel
| | Generalist Developer, an enthusiastic physicist that spends most of its days telling computers how to do stuff
| | blog.nuculabs.de
2.8 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:
| | earthly.dev
20.5 parsecs away

Travel
| This tutorial explains how to create a Python virtual environment using PyInstaller, a packaging tool for Python applications, and distribute them ...