#virtualenv
been failing to create a virtualenv for 20 mins now because I wrote matplolib instead of matlplotlib

how's your day going?
October 23, 2025 at 9:53 AM
anyway, i think it should be possible to plug #GlasgowInterfaceExplorer into a completely new computer and start, for example, dumping flash into a file within 30 seconds and with zero Python virtualenv interaction. i have as of this point basically achieved that (tho you need Chrome)
October 13, 2025 at 2:29 AM
footgun pro tip: pip install whatever only puts the bytes in your virtualenv if they aren't already there, pit install -U whatever is what you need to make the version number go bigger
November 22, 2024 at 3:26 PM
Python devs, have you heard about uv? 🚀

Imagine a tool that replaces pip, poetry, and more—faster than you can say "virtualenv"!

Curious? Dive into this new post from SaaS Pegasus and see why uv might just be your new best friend in Python land! www.saaspegasus.com/guides/uv-de...
Better, Faster Python Projects: A Deep Dive into uv
A comprehensive guide on why and how to start using uv—the package manager (and much more) that's taken the Python world by storm.
www.saaspegasus.com
December 6, 2024 at 3:10 AM
the problem with pyproject.toml is it does so much that it's hard to figure out how to do the one thing you need from it.

the [project.scripts] config will generate virtualenv-aware wrappers and it also works on windows. This is the one thing I use beyond the dependency list personally.
November 8, 2024 at 11:11 PM
This drives me crazy, haha

And virtualenv doesn't work on fish without hackery, lol
November 28, 2024 at 8:37 PM
python-virtualenv 20.35.4-1 any Virtual Python Environment builder

Interest | Match | Feed
Origin
archlinux.org
November 4, 2025 at 7:21 AM
One of the fun things you can do with uvx to just … run python.

Super useful to play around with a python package without having to make a virtualenv somewhere.
November 18, 2024 at 10:49 PM
I'm sure there are other issues beyond just installing it but I'm surprised to hear that the last version of Python 2 can't be installed on a current version of Ubuntu and run in a virtualenv. When you say you need tooling are you referring to packages that no longer have a Python 2 version ?
May 25, 2025 at 10:41 PM
結局pyenv virtualenvに戻ってくるという
August 9, 2025 at 1:12 PM
この2ヶ月強で
-公開鍵をエディタで開けない、.sshの存在を知らない
-他人のEFS内でrm -rf
-EFSがいっぱいになった、助けて(なってない)
-EC2 instanceにSSHが繋がらないのでrebootできない
-tmuxの存在を知らない
-virtualenvの存在を知らない
などを見せられており…まぁ単体ならそういうこともあるかという感じだけど、あと自分で調べる力に乏しい
November 5, 2024 at 9:31 AM
671 - Descubre la herramienta que cambiará como usas Python

#uv es la herramienta perfecta para gestionar proyectos y dependencias de #python y que viene a sustituir a #pip #poetry #pyenv #virtualenv y otras

C

https://www.youtube.com/watch?v=Jb-9QII_E1Y

#atareaoConLinux #podcastesp
February 17, 2025 at 5:10 PM
Python Project-Local Virtualenv Management Redux https://hynek.me/articles/python-virtualenv-redux/
Python Project-Local Virtualenv Management Redux
hynek.me
April 8, 2024 at 10:28 AM
Containerizing your Python applications brings standardization and streamlined deployment, but it also poses unique challenges.

Our team's exploration of modern dependency management tools revealed some insights about UV (Universal Virtualenv).

#Python #Docker
June 12, 2025 at 10:41 PM
I hesitated installing Mojo since it needs Pixi, a new Python version and package manager.

I've already used: asdf, Conda, Nix, Pip, Pipenv, Poetry, Pyenv, uv, venv, virtualenv. Each has a different place to install Python and package to. 😵‍💫

Why did Mojo choose Pixi?
www.youtube.com/watch?v=UeyM...
Ruben Arts & Wolf Vollprecht - Reproducible Science Made Easy: Package Management with Pixi
YouTube video by SciPy
www.youtube.com
August 25, 2025 at 3:40 PM
Makes sense. I have to go re-add old python versions for old projects after dnf upgrades them on Fedora, too. By default I think virtualenv only makes a symlink but there's an arg to force it to copy everything.

As a last ditch effort you can always build everything as a container :P
CLI interface - virtualenvContentsMenuExpandLight modeDark modeAuto light/dark, in light modeAuto light/dark, in dark mode
virtualenv.pypa.io
January 27, 2025 at 2:42 AM
pyenv-virtualenvからPoetryへの移行を考えていたけど、uvもいいかも🦆

gihyo.jp/article/2024...
さらなる進化を遂げた「uv」の新機能 | gihyo.jp
本連載Python Monthly Topicsで2024年3月に紹介した「uv」が、さらなる進化を遂げました。今回は、その新機能を紹介します。
gihyo.jp
September 30, 2024 at 11:59 PM
That’s a huge reason I avoid Python. I spend more time fighting with environment setup than I do writing actual code!

However, I’ve found that PyEnv is a solid choice for managing versions and using virtualenv for packages. I try to keep it simple 😅
November 19, 2024 at 3:00 AM
pop and virtualenv have already made this much nicer than the last time I was at it.
November 2, 2024 at 10:18 PM
have you looked into `uv run` or `uv add`? `uv add` is an alternative way to manage dependencies than using a requirements file, `uv run` allows you to easily run scripts without having to worry about the virtualenv (it will activate if isn't).

also uv has sub-commands for managing python versions
February 15, 2025 at 7:19 PM
I use pyenv-virtualenv not with directories, but with PYENV_VERSION environment variable.
December 4, 2024 at 2:06 PM
Afterwards, don't ever use it directly.
Just open up your fav IDE, like PyCharm etc.
And make a virtualenv.
Let your IDE handle all the details.
March 23, 2024 at 6:26 AM
Pyenv with virtualenv plugin. I accumulate envs and it’s easy to keep track and cleanup
September 16, 2023 at 8:41 PM
For this specific use case, I would not use a persistent virtualenv.

I would launch jupyter with the specified python version and your lib with `uv run`.

`uv run --with jupyter --with fastcore --python 3.10 jupyter lab`.

Not sure about the cuda version.
December 4, 2024 at 5:15 PM