You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If uv is found, the virtual environment that hosts the copier package will be created with it. The plugin will fallback to python -m venvif uv is not available.
Similarly to asdf-pyapp (KUDOS to the maintainers!), the python 3 version used will be one provided by asdf if the asdf-python plugin is installed. The asdf-copier plugin will fallback to a system python3 installation if no python3 version is available through asdf.
You can override the detection mechanism by providing the ASDF_PYAPP_DEFAULT_PYTHON_PATH environment variable when installing a copier version (we decided to use the same env var name as pyapp to avoid having to define one more env var if possible)
# Show all installable versions
asdf list all copier
# Install latest version
asdf install copier latest
# Set a version globally (on your ~/.tool-versions file)
asdf global copier latest
# Now copier commands are available
copier --help
Check asdf readme for more instructions on how to
install & manage versions.
Note
As copier is installed in a virtual environment, if the installation of python used to install copier does not exist anymore (if it comes from asdf or brew for instance), copier will fail to launch. You will need to uninstall/reinstall the copier version.