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.008261
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 2 3 4 5 6 7 8 9 .. 15 Next › Last »

GeorgeRaven commented on 2020-04-08 19:51 (UTC) (edited on 2020-04-08 20:02 (UTC) by GeorgeRaven)

This package works completeley fine on archlinux using all methods. This package does not work in my tests with manjaro + pikaur, but works completely fine with makepkg thus the package is fine it may be a quirk of certain helpers.

if unsure/ things go wrong use makepkg which is the way these packages are tested:

git clone https://aur.archlinux.org/anaconda
cd anaconda
makepkg -si

https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_packages

Banjo commented on 2020-04-07 14:20 (UTC)

@skome, I am getting the same issue using yay (on Manjaro), but it works using pamac.

krouziciorel commented on 2020-03-31 06:09 (UTC) (edited on 2020-03-31 06:09 (UTC) by krouziciorel)

I have not encountered this error, maybe the informations from the Manjaro distribution forum will help:

https://forum.manjaro.org/t/problem-with-installing-python-anaconda-with-yay-newbie/96939

If you still cannot install, I recommend to wait for the new version from package maintainer or install manually from the project site:

https://www.anaconda.com/distribution/#download-section

via:

sh anconda-xx.sh

skome commented on 2020-03-30 14:25 (UTC)

Nope. Does not work. Manjaro. Seeing a lot of "Placeholder"

-> Installing anaconda to /opt/anaconda PREFIX=/run/media/samk/things/code/aur/pamac-build/anaconda/pkg/anaconda/opt/anaconda Unpacking payload ... [1255952] mod is NULL - struct[1255952] mod is NULL - pyimod02_archive[1255952] mod is NULL - pyimod03_importers[1255952] Failed to execute script pyiboot01_bootstrap Traceback (most recent call last): File "/tmp/build/80754af9/conda-standalone_1580848381450/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/lib/python3.7/struct.py", line 13, in <module> ModuleNotFoundError: No module named '_struct' Traceback (most recent call last): File "/tmp/build/80754af9/conda-standalone_1580848381450/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/lib/python3.7/site-packages/PyInstaller/loader/pyimod02_archive.py", line 30, in <module> ModuleNotFoundError: No module named 'struct' Traceback (most recent call last): File "/tmp/build/80754af9/conda-standalone_1580848381450/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/lib/python3.7/site-packages/PyInstaller/loader/pyimod03_importers.py", line 26, in <module> ModuleNotFoundError: No module named 'pyimod02_archive' Traceback (most recent call last): File "site-packages/PyInstaller/loader/pyiboot01_bootstrap.py", line 17, in <module> ModuleNotFoundError: No module named 'pyimod03_importers' [1255955] Failed to execute script entry_point Traceback (most recent call last): File "entry_point.py", line 61, in <module> FileNotFoundError: [Errno 2] No such file or directory: 'pkgs' ==> ERROR: A failure occurred in package(). Aborting...

krouziciorel commented on 2020-03-29 08:26 (UTC) (edited on 2020-03-29 08:27 (UTC) by krouziciorel)

I also had the same problem, for a functional anaconda-navigator I'm for longer googling:

  1. Modified /opt/anaconda3/lib/python3.7/site-packages/anaconda_navigator/api/external_apps/vscode.py as follows:

file:

    ...

def _find_linux_install_dir:
    INST_DIR = None
    exe = os.path.join ('/ snap', 'bin')
    If os.path.lexists (exe):
        INST_DIR = '/ snap'

    DISTRO_NAME = None ## Adding this line ... takes care of the bug in my case
    for distro in self.distro_map.keys
        _distro_regex = ". * {} / ([^] *)". format (distro)
        m = re.match (_distro_regex, self._conda_api.user_agent)
        if m:
            DISTRO_NAME = distro
            DISTRO_VER = m.group (2)
            break

    if DISTRO_NAME in ['ubuntu', 'debian']:
        _pkg_type = 'deb'
    else:
        _pkg_type = 'rpm'

    ...
  1. Start the update using: conda update anaconda-navigator

  2. I have solved fontconfig problems with: export FONTCONFIG_FILE=/etc/fonts/fonts.conf

Now anaconda-navigator works, but I still have problems with IDE Spyder, I managed to run it with:

conda install -f

However, Spyder is still not stable and after a while I get a message:

Unauthorized memory access (SIGSEGV) (core dumped [memory image saved])

so for now is better install it via pacman or build via AUR

spanick commented on 2020-03-24 22:22 (UTC)

Hi everyone, I apologize for what I'm going to say, I'm relatively new on archlinux. I had installed Anaconda a few months ago (via yay) and it seemed to work. then last week or made the update and now I can no longer start the "Navigator". from terminal I use:

$ source /opt/anaconda/bin/activate root $ anaconda-navigator

and I get:

Fontconfig error: Cannot load default config file <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1076)> <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1076)> <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1076)> <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1076)> <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1076)> <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1076)> Traceback (most recent call last): File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/widgets/main_window.py", line 541, in setup self.post_setup(conda_data=conda_data) File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/widgets/main_window.py", line 578, in post_setup self.tab_home.setup(conda_data) File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/widgets/tabs/home.py", line 169, in setup self.set_applications(applications, packages) File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/widgets/tabs/home.py", line 204, in set_applications apps = self.api.process_apps(applications, prefix=self.current_prefix) File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/api/anaconda_api.py", line 848, in process_apps app = app(config=self.config, process_api=self._process_api, conda_api=self._conda_api) File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/api/external_apps/vscode.py", line 48, in init **kwargs File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/api/external_apps/base.py", line 43, in init self.init() File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/api/external_apps/base.py", line 60, in init SUBDIR, INST_EXT, INST_DIR = self._find_linux_install_dir() File "/opt/anaconda/lib/python3.7/site-packages/anaconda_navigator/api/external_apps/vscode.py", line 168, in _find_linux_install_dir if DISTRO_NAME in ['ubuntu', 'debian']: UnboundLocalError: local variable 'DISTRO_NAME' referenced before assignment

can anyone tell me how to solve the problem? Many thanks in advance:)

tonfunk commented on 2020-03-04 09:24 (UTC)

Hi, checksum error for Anaconda3-2019.10-Linux-x86_64.sh during source file validation as part of makepkg. Same issue with anaconda2.

panthar commented on 2019-12-05 14:34 (UTC) (edited on 2019-12-05 14:34 (UTC) by panthar)

I was having the same problem as @ypislon and @giswqs. I also have a clean setup with no custom environment. When I tried to use an AUR helper (yay, etc), I get the same failure. But if I build it by hand using makepkg, it works fine. So it appears to be something the package managers are setting up in their environment. Try grabbing the build files manually (or sync them with auracle) and run makepkg by hand.

ypislon commented on 2019-11-12 13:04 (UTC)

@petronny I can confirm the problems of previous users with the latest version, even when building the package in a clean chroot, I get the following error

PREFIX=/build/anaconda/pkg/anaconda/opt/anaconda Unpacking payload ... [1441] mod is NULL - struct[1441] mod is NULL - pyimod02_archive[1441] mod is NULL - pyimod03_importers[1441] Failed to execute script pyiboot01_bootstrap Traceback (most recent call last): File "/tmp/build/80754af9/conda-standalone_1569022236822/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/lib/python3.7/struct.py", line 13, in <module> ModuleNotFoundError: No module named '_struct' Traceback (most recent call last): File "/tmp/build/80754af9/conda-standalone_1569022236822/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/lib/python3.7/site-packages/PyInstaller/loader/pyimod02_archive.py", line 28, in <module> ModuleNotFoundError: No module named 'struct' Traceback (most recent call last): File "/tmp/build/80754af9/conda-standalone_1569022236822/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho/lib/python3.7/site-packages/PyInstaller/loader/pyimod03_importers.py", line 24, in <module> ModuleNotFoundError: No module named 'pyimod02_archive' Traceback (most recent call last): File "site-packages/PyInstaller/loader/pyiboot01_bootstrap.py", line 15, in <module> ModuleNotFoundError: No module named 'pyimod03_importers' [1444] Failed to execute script entry_point Traceback (most recent call last): File "entry_point.py", line 63, in <module> FileNotFoundError: [Errno 2] No such file or directory: 'pkgs'

giswqs commented on 2019-11-11 15:38 (UTC)

@petronny I tried to update it using the pamac-manager GUI. No custom python environment was activated. I also tried the command "yay -S miniconda3" and got the same error.