Trending

#VirtualEnv

Latest posts tagged with #VirtualEnv on Bluesky

Latest Top
Trending

Posts tagged #VirtualEnv

🐍 Entornos virtuales de Python: aislamiento sin caos

Evita conflictos de versiones aislando dependencias para cada proyecto.

thenewstack.io/for-darryl-python-virtua...

#Python #VirtualEnv #Development #RoxsRoss

0 0 0 0
Preview
When `venv` Lies: Debugging a Ghost Python 3.4 on Ubuntu Virtual environments are supposed to isolate your project. But what happens when your venv quietly...

When `venv` Lies: Debugging a Ghost Python 3.4 on Ubuntu Virtual environments are supposed to isolate your project. But what happens when your venv quietly binds itself to a decade-old Python inter...

#python #ubuntu #virtualenv #devops

Origin | Interest | Match

0 0 1 0
Preview
Migrate Python Packages Between Virtual Environments In Linux - OSTechNix Learn how to migrate all Python packages from one virtual environment to another using simple pip commands in Linux.

Learn how to easily migrate Python packages between virtual environments in Linux.

Step-by-Step Guide: ostechnix.com/migrate-pyth...

#Python #Pip #VirtualEnvironment #Virtualenv #Programming #Linux

1 0 0 0
Original post on teh.entar.net

I kind of irrationally #CodeGolf my #Makefile rules, but sometimes I sit down to straighten out something awkward that bugged me for years, and get kind of mad when I seem to have been the first to actually treat `make` like the tool it is instead of as a broken shell script runner.

This time […]

0 0 0 0
uv An extremely fast Python package and project manager, written in Rust.

Holy fuck! I know I’m late to the game but uv is amazing! A single binary for managing python deps, envs and even python versions! Nice to see it’s been written in rust too! And it’s really fast! docs.astral.sh/uv/ #rustlang #python #virtualenv #pip

3 0 0 0
Preview
Creating and using a virtual environment for Python with venv Why use a virtual environment in Python and how to use venv to create one

On the blog of #norsys, I have published a post about using venv to create and manage virtual environments in Python.

medium.com/norsys-octog...

#Python #Venv #VirtualEnv #VirtualEnvironnement #norsys #octogone

0 0 0 0
Preview
Creating and using a virtual environment for Python with venv Why use a virtual environment in Python and how to use venv to create one

Sur le blog de #norsys, j'ai publié un article sur l'utilisation de venv pour créer des environnement virtuels en Python.

medium.com/norsys-octog...

#Python #Venv #VirtualEnv #VirtualEnvironnement #norsys #octogone

0 0 0 0

Imagine a single tool replacing pip, poetry, & more! 🤔 That's UV! ⚡️ 100x faster installs? Yes! Consistent projects? Absolutely! Control your Python? You got it! Why juggle tools? Find out more: [https://medium.com/p/90cb3938418b] #Python #UV #VirtualEnv #DevTools

0 0 0 0

Day 3 of #dezoomcamp 👩‍💻 and ran into a few more issues, but I was able to solve them independently tonight, so that is progress - right? Light Day 3 blog post here, need to rest my brain🧠! tinker0425.github.io/data-enginee...

#dataBS #python #virtualenv #sql #gitlab #learninginpublic

0 0 0 0
Day 2: It was the virtual environment Hello! My name is Kayla Tinker. Welcome to my blog.

Day 2 of #dezoomcamp - a bit late due to a frustrating error 😭! Read more about the issue 🐛 and the solution in my day 2 blog post here - tinker0425.github.io/data-enginee...

📘 I hope to add more to my gitbook notes soon!

#dataBS #python #virtualenv #sql #gitlab #learninginpublic

0 0 0 0
Post image

There has to be one sane person at #huggingface. Python #cli tools are a disease....please NO pip install. Then the #virtualenv or #conda virus F**ks my machine up. Developers cannot write #golang or #rust? Someone explain...

1 0 2 0

After moving to using Python virtual environments for my data science and data analysis tasks, I have stopped facing those version incompatibility warnings and errors completely. #python #virtualenv

0 0 1 0
Virtual Environments in Python Viele Betriebssysteme liefern eine Python-Version mit, die sich aufgrund von weiteren Abhängigkeiten nicht so einfach wechseln oder entfernen lässt. Ein Beispiel dafür ist CentOS 7.7. Hier wird auch heute noch Python 2.7.5 standardmäßig mit ausgeliefert, aktuell ist 3.8.2. Mit Virtual Environments (Virtualenv) bietet Python ein Funktion, um trotzdem andere Versionen dort nutzen zu können und zwar dort, wo sie benötigt werden. Die gewünschte Version muss natürlich trotzdem installiert werden, auf CentOS 7 geschieht das beispielsweise mit: $ yum install python3 Anschließend wird das Virtual Environment initialisiert, dafür muss zuerst in ein Verzeichnis gewechselt werden, in dem zusätzliche Dateien abgelegt werden können (hier am Beispiel Graphite): $ cd /opt/ $ python3 -m venv graphite Danach wird das Virtual Environment aktiviert: $ source graphite/bin/activate Während man sich im Virtual Environment befindet, ändert sich der Bash-Prompt und sämtliche Python-Befehle werden auf die geänderte Python-Version angepasst: (graphite)$ pip --version (graphite)$ pip 9.0.3 from /opt/graphite/lib64/python3.6/site-packages (python 3.6) Nun lassen sich die gewünschten Paketbhängigkeiten installieren oder Änderungen vornehmen. Und mit deactivate lässt sich das Virtual Environment wieder verlassen, bis es erneut aktiviert wird. Wer trotzdem noch Unterstützung bei Linux oder vielleicht auch bei Graphite braucht, der kann sich natürlich gerne vertrauensvoll an uns wenden: clickhere PS: Ganz […]

Virtual Environments in Python#graphite #python #python3 #virtualenvironment #virtualenv

buff.ly/2L7Zkqk

0 0 0 0