The current PKGBUILD for miniconda3 25.5.1.1-1 still calls the py312 installer inside package(), while the source array has already been updated to py313:
- bash "${srcdir}/Miniconda3-py312_${_pkgver}-Linux-${CARCH}.sh" -b -p "${pkgdir}/opt/miniconda3"
- bash "${srcdir}/Miniconda3-py313_${_pkgver}-Linux-${CARCH}.sh" -b -p "${pkgdir}/opt/miniconda3"
Because the py312 file is no longer downloaded, the build fails with:
bash: /home/$USER/.cache/paru/clone/miniconda3/src/Miniconda3-py312_25.5.1-1-Linux-x86_64.sh: No such file or directory ==> ERROR: A failure occurred in package().
Simply replacing py312 with py313 in the installer path resolves the issue;
Pinned Comments
carlosal1015 commented on 2024-07-10 02:47 (UTC)
In order to check a new version
carlosal1015 commented on 2022-05-26 20:15 (UTC) (edited on 2022-05-26 20:15 (UTC) by carlosal1015)
Important note: This is the way how to upgrade.
Suppose that we have this line in
~/.bashrc
or~/.zshrc
or etc.jadelord commented on 2021-02-05 09:50 (UTC) (edited on 2022-02-03 11:32 (UTC) by jadelord)
I have packaged micromamba in AUR. Try it if you are looking for a lightweight, barebones alternative to miniconda.