Great! Thanks for your work cyrevolt :)
For completeness, here's the content of the conda
script as generated by the miniconda installer on one of my machines:
#!/home/user/miniconda3/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from conda.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
conda-env
is the same, except that from conda.cli import main
becomes from conda_env.cli.main import main
(as you are doing in the PKGBUILD).
BTW completion is working perfectly for me on the fish shell. I don't think there's completion for any other shell though.
Pinned Comments
flying-sheep commented on 2025-01-06 13:01 (UTC)
You forgot to rebuild all your AUR python packages after that update. That's a necessary step and has nothing to do with our conda package.
See e.g. https://www.reddit.com/r/archlinux/comments/1hk2wii/comment/m3g11xz/
Please ask in the Arch BBS or on e.g. Reddit if you have further questions!