Search Criteria
Package Details: python-conda 24.11.2-1
Package Actions
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.82 |
First Submitted: | 2016-04-08 07:41 (UTC) |
Last Updated: | 2025-01-03 04:35 (UTC) |
Dependencies (19)
- python (python37AUR, python311AUR, python310AUR)
- python-archspecAUR
- python-boltonsAUR
- python-boto3
- python-botocore (python-botocore-gitAUR)
- python-conda-libmamba-solverAUR
- python-conda-package-handlingAUR
- python-pluggy
- python-pycosat
- python-requests
- python-ruamel-yaml (python-ruamel-yaml-hgAUR)
- python-tqdm
- python-build (make)
- python-hatch-vcs (make)
- python-hatchling (python-hatchling-gitAUR) (make)
- python-installer (make)
- python-wheel (make)
- python-pytest (check)
- python-pytest-mock (check)
Latest Comments
« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 Next › Last »
mdeff commented on 2018-06-04 13:34 (UTC)
That's expected. The "base environment" is located under the
/usr
system directory and is not writable by users. That's because you installed conda system-wide with this package. If you'd instead installed it with e.g. the installer provided by continuum, the base environment would be situated under your home directory and you'd update withconda update conda
.Pixys commented on 2018-06-04 12:35 (UTC)
Thank you. I switched back to the "base environment" just to test and I have the same error. Anyway, I trust you on the update through AUR so thanks again.
mdeff commented on 2018-06-04 11:51 (UTC)
conda is not installed in your environment
test01
, but in the "base environment". If you installed conda with this package, there's no need forconda update conda
though. You should update it with whatever AUR helper you're using.Pixys commented on 2018-06-02 05:45 (UTC) (edited on 2018-06-03 02:25 (UTC) by Pixys)
Hi,
I just installed python-conda (fresh installation). When I run 'conda update conda', here is what I get. Thanks for your help!
See the ouput of 'conda info -a':
mdeff commented on 2018-05-11 12:14 (UTC)
Add
to your
~/.condarc
.It should probably be reported upstream that the default paths should be relative to the user home, not relative to the base directory.
tr3s commented on 2018-05-10 22:25 (UTC)
I'm having this issue when creating conda environment:
Solving environment: failed
NotWritableError: The current user does not have write permissions to a required path. path: /usr/pkgs/urls.txt uid: 1000 gid: 1000
If you feel that permissions on this path are set incorrectly, you can manually change them by executing
$ sudo chown 1000:1000 /usr/pkgs/urls.txt
In general, it's not advisable to use 'sudo conda'.
Sorry for the format :)
mdeff commented on 2018-05-02 15:35 (UTC) (edited on 2018-05-02 15:40 (UTC) by mdeff)
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:conda-env
is the same, except thatfrom conda.cli import main
becomesfrom 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.
cyrevolt commented on 2018-05-02 00:13 (UTC)
I have figured out how to get
conda-env
to work and it is now included. Enjoy! :)cyrevolt commented on 2018-04-04 08:23 (UTC) (edited on 2018-04-04 08:33 (UTC) by cyrevolt)
Thank you for your suggestions mdeff!
1. I've looked into conda-env, and it is part of the main conda repo, and it is even being installed. I cannot find a
conda-env
executable file though. The README says even that it should be installed into the "base environment" by running:conda install -c conda conda-env
I am not sure how this can be simply added to the package yet.2. I a m not a csh user; I know
setenv
from fish, which appears to be just a compatibility thing and should actually beset -x
, according to https://github.com/fish-shell/fish-shell/issues/2704 - it is the counterpart to bash'sexport
, if I understand correctly. I am using it in the -git version of this package. I need to read more about this.3. Well if we don't use
setenv
/set -x
for zsh and fish, it makes sense to remove theexport
for bash also. It should be the same for all shells. I'll investigate.4. Yup, I'm adding it. I am not sure yet though what the completion actually provides. I tried it out, but
conda bu
for example does not complete in neither shell. I opened a new terminal and even sourced the respective file again.5. Awesome! I should also reach out to upstream to clarify packaging issues. The seemed to prefer the curl pipe sudo bash pattern to avoid/circumvent distro packaging so far. I hope they will be cooperative. :)
« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 Next › Last »