Package Details: python-conda 25.1.1-1

Git Clone URL: https://aur.archlinux.org/python-conda.git (read-only, click to copy)
Package Base: python-conda
Description: OS-agnostic, system-level binary package manager and ecosystem https://conda.io
Upstream URL: https://github.com/conda/conda
Licenses: BSD-3-Clause
Provides: python-conda, python-conda-env
Submitter: cyrevolt
Maintainer: flying-sheep (brianrobt)
Last Packager: brianrobt
Votes: 34
Popularity: 0.113914
First Submitted: 2016-04-08 07:41 (UTC)
Last Updated: 2025-02-04 04:29 (UTC)

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!

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 11 Next › Last »

monson commented on 2020-10-07 02:26 (UTC)

Run /usr/bin/conda shell.zsh hook failed for

    FileNotFoundError: [Errno 2] No such file or directory: '/usr/lib/python3.8/site-packages/conda/shell/etc/profile.d/conda.sh'

ln -s /etc/profile.d/conda.sh /usr/lib/python3.8/site-packages/conda/shell/etc/profile.d/conda.sh fix it, would you add this is PKGBUILD?

specter119 commented on 2020-09-27 23:58 (UTC)

@leuko You need create a environment first. The 'base' environment of python-conda is system python, which is not actually controlled by python-conda.

leuko commented on 2020-09-23 19:47 (UTC)

I get the following error when I issue conda install:

NoBaseEnvironmentError: This conda installation has no default base environment. Use
'conda create' to create new environments and 'conda activate' to
activate environments.

Is a preconfiguration needed or is this a packaging issue?

PS: My goal is to install conda on a multi-user environment for students that they can install personal conda packages.

mdeff commented on 2019-07-01 10:25 (UTC) (edited on 2019-07-08 09:29 (UTC) by mdeff)

I confirm @pszynk's findings. I had to export CONDA_EXE and install python-libarchive-c. Note that _CONDA_ROOT is still referenced in /etc/fish/conf.d/conda.fish. (edit: I previously stated I didn't need to export)

pszynk commented on 2019-06-28 11:54 (UTC) (edited on 2019-06-28 11:54 (UTC) by pszynk)

Also, there are two new dependecies

  • python-libarchive-c
  • python-tqdm

pszynk commented on 2019-06-28 11:41 (UTC) (edited on 2019-06-28 11:42 (UTC) by pszynk)

@bobschi yeah, there is an error in PKGBUILD, should be:

 echo 'export CONDA_EXE=/usr/bin/conda
export CONDA_ROOT=/' | cat - conda/shell/etc/profile.d/conda.sh > conda.sh

wrong variables are exported! _CONDA_EXE and _CONDA_ROOT

cyrevolt commented on 2019-06-17 15:01 (UTC)

I guess it's somewhat related to https://github.com/conda/conda/commit/5efca40af360bdafdd78ada34b5bfd22137a3c8f - I'll see if I can find a fix. They are changing how paths and environments are being handled from time to time. That caused me a headache a few times already. :D

bobschi commented on 2019-06-17 09:48 (UTC)

After installing this package I manually have to add

export CONDA_EXE=/usr/bin/conda

to .bashrc, otherwise it won't work. Any ideas on that?