Package Details: anaconda 2024.02.1-1

Git Clone URL: https://aur.archlinux.org/anaconda.git (read-only, click to copy)
Package Base: anaconda
Description: Simplifies package management and deployment of Anaconda
Upstream URL: https://anaconda.com
Licenses: custom
Provides: conda
Submitter: flexiondotorg
Maintainer: carlosal1015 (petronny, AutoUpdateBot)
Last Packager: AutoUpdateBot
Votes: 109
Popularity: 0.008096
First Submitted: 2013-06-24 14:51 (UTC)
Last Updated: 2024-02-27 08:33 (UTC)

Dependencies (14)

Required by (1)

Sources (3)

Pinned Comments

carlosal1015 commented on 2022-09-03 23:07 (UTC) (edited on 2023-07-15 17:00 (UTC) by carlosal1015)

Important note: This is the way how to upgrade.

Suppose that we have this line in ~/.bashrc or ~/.zshrc or etc.

[ -f /opt/anaconda/etc/profile.d/conda.sh ] && source /opt/anaconda/etc/profile.d/conda.sh
  1. Before to upgrade I comment this line.
  2. Upgrade the package as usual.
  3. Uncomment the line.

Changelog: https://docs.anaconda.com/free/anaconda/reference/release-notes

petronny commented on 2020-08-19 10:36 (UTC) (edited on 2023-12-12 12:23 (UTC) by petronny)

This PKGBUILD is tested with extra-x86_64-build.

If you get any problem when build this package, you can try the prebuilt binary from the arch4edu repository. It's also built with extra-x86_64-build.

Latest Comments

« First ‹ Previous 1 .. 7 8 9 10 11 12 13 14 15 Next › Last »

aignas commented on 2016-02-11 18:51 (UTC)

version 2.5.0 is available: https://www.continuum.io/downloads#_unix

thx1138_2 commented on 2016-01-11 11:45 (UTC) (edited on 2016-01-11 11:46 (UTC) by thx1138_2)

I had this problem when starting ipython: WARNING: Readline services not available or not loaded. WARNING: The auto-indent feature requires the readline library Solution: Install ncurses and readline through conda. https://github.com/ContinuumIO/anaconda-issues/issues/455#issue-108616463

immae commented on 2015-12-14 20:18 (UTC)

up to date

bachp commented on 2015-12-14 12:31 (UTC)

Version 2.4.1 is available: https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda3-2.4.1-Linux-x86_64.sh

cyrevolt commented on 2015-11-26 18:28 (UTC) (edited on 2015-11-27 11:22 (UTC) by cyrevolt)

I had to change the line for the install script to CONDA_INSTALL="$prefix/pkgs/conda-${_condaver}-py35_0/lib/python3.5/site-packages/conda/install.py" (it's Python 3.5 instead of 3.4)

immae commented on 2015-11-25 13:39 (UTC)

It's corrected, thanks for the feedback

ZilongTan commented on 2015-11-25 13:33 (UTC)

The installation script fails to validate the checksum of conda_install.patch. Please update the sha256 checksum in the package.

immae commented on 2015-11-05 08:16 (UTC)

hi, As I answered to adalbertobrant by email, I think it's a bad idea to add anaconda to the path directly (for the exact reason that you said). You'd better make an alias or a function that enables the env at will, and not by default. I could maybe add such function in /etc/profile.d in the package; As for the fact that conda cannot install new packages, it is on purpose, as I cannot find a good way to keep them when you upgrade anaconda.

cephalopoid commented on 2015-11-04 22:50 (UTC)

Hello adalbertobrant, I've had troubles with the path as well. It's kind of a pain that anaconda and vanilla python don't play along nicely. The solution is to put this in your ~/.bashrc (or ~/.zshrc if you use zsh) export PATH=/opt/anaconda/bin:"$PATH" Then "source ~/.bashrc" The trouble is, that if you want to install python-dependent packages from the AUR, anaconda's python will be used and it will be installed for anaconda, not for the system in general. At least, I think that's what happens on my system. You'll need to "echo $PATH", then export the path without the anaconda part, and then you'll be able to use vanilla python for updates. I hope this helps.

adalbertobrant commented on 2015-10-30 20:45 (UTC)

Please need some help ! I installed anaconda and it was ok , but now when I call it in terminal I need to write all the Path that is the first "error". The other one is when I try to update with this command : conda update conda , it give me this message : Error: Missing write permissions in: /opt/anaconda # # You don't appear to have the necessary permissions to update packages # into the install area '/opt/anaconda'. # However you can clone this environment into your home directory and # then make changes to it. # This may be done using the command: # # $ conda create -n my_root --clone=/opt/anaconda Could you give me some help ? Thanks !