Wouter Vanden Hove

Results 60 comments of Wouter Vanden Hove

``` it is not clear how to check where uv ends up installing stuff. ``` I've already been bitten multiple times by this, installing stuff in the wrong venv. Because...

docker's .env-support should be considered broken. .env-files should be valid bash-syntax, allowing quotes and variable substitutions. docker does not support this.

`By comparison to more traditional tools, poetry also (by default) will automatically create venvs in a central location. Although it puts all venvs in the same folder using a somewhat...

@hauntsaninja Thanks for the tip. I was annoyed that uv does not support the most common normal use-case of virtualenv ootb: ``` > virtualenv foo > cd foo > bin/pip...

@gotcha Is there currently a way to tell ipdb to start a non-default ipython-profile? my usecase: I use startup-files of the default ipython-profile for interactive sessions, but when debugging the...

See https://github.com/gotcha/ipdb/pull/266

I don't care whatever *default* location is choosen, as long as you can choose to override it yourself. see https://github.com/astral-sh/uv/issues/2087 My personal preference is `~/bin` because I don't want executables...

Rye is a good example: via RYE_HOME, a user can still override the default directory and choose their own location (and I use it, many thanks @mitsuhiko) @konstin .dotfiles are...

A .env-file in the root of a project can used by several different tools - bash / zsh /... - any dotenv-parser in any language (python, ...) you can source...