Hi, I encountered "missing libselinux.so.1" error message, install libselinux from aur solved the problem, maybe libselinux should be counted as one dependency.
Search Criteria
Package Details: anaconda 2024.10.1-1
Package Actions
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: | 110 |
Popularity: | 0.078640 |
First Submitted: | 2013-06-24 14:51 (UTC) |
Last Updated: | 2024-10-24 08:33 (UTC) |
Dependencies (14)
- alsa-lib (optional) – for Anaconda Navigator support
- libglvnd (libglvnd-gitAUR) (optional) – for Anaconda Navigator support
- libxau (optional) – for Anaconda Navigator support
- libxcomposite (optional) – for Anaconda Navigator support
- libxcursor (optional) – for Anaconda Navigator support
- libxdamage (optional) – for Anaconda Navigator support
- libxfixes (optional) – for Anaconda Navigator support
- libxi (libxi-gitAUR) (optional) – for Anaconda Navigator support
- libxrandr (libxrandr-gitAUR) (optional) – for Anaconda Navigator support
- libxrender (optional) – for Anaconda Navigator support
- libxss (optional) – for Anaconda Navigator support
- libxtst (optional) – for Anaconda Navigator support
- mesa (mesa-minimal-gitAUR, mesa-gitAUR, mesa-wsl2-gitAUR, amdonly-gaming-mesa-gitAUR, mesa-amd-bc250AUR, mesa-amber) (optional) – for Anaconda Navigator support
- xdg-utils (busking-gitAUR, xdg-utils-slockAUR, mimiAUR, mimi-gitAUR, xdg-utils-handlrAUR, openerAUR, xdg-utils-mimeoAUR, mimejs-gitAUR) (optional) – for
Required by (1)
- python-conda-pack (requires conda)
Sources (3)
Latest Comments
« First ‹ Previous 1 .. 5 6 7 8 9 10 11 12 13 14 15 16 Next › Last »
xiaolongfdwq commented on 2017-05-31 14:56 (UTC)
cripcate commented on 2017-05-05 13:36 (UTC) (edited on 2017-05-05 20:14 (UTC) by cripcate)
When i try to install anaconda via AUR i get:
https://gist.github.com/anonymous/26acf9fe5fd06e3ccaa34ac15022a199
I have plenty of space (>30gb left on each of my partitions tho (except SWAP))
When I build anaconda via the installer from the homepage i have no problems.
EDIT: [SOLVED] my /tmp is running on tmpfs and ran out of space. I used yaourt -S anaconda --tmp ~/Desktop and it installed just fine!
petronny commented on 2017-01-04 09:41 (UTC) (edited on 2017-01-04 09:41 (UTC) by petronny)
@KgOfHedgehogs, the reason is the default anaconda hasn't installed all the dependencies for jupyter and spyder.
(Optional)Select a channel rather than default:
$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
For jupyter:
$ conda create -n myroot --clone /opt/anaconda
$ source activate myroot
$ conda install pyqt
Now jupyter-qtconsole should work.
For spyder:
$ conda create -n myroot2 --clone /opt/anaconda
$ source activate myroot2
$ conda install python=2.7.13
$ conda install pyside
Now spyder should work. But this is silly. I recommend you to use the anaconda2, or the spyder3 package in [community].
KgOfHedgehogs commented on 2017-01-03 18:03 (UTC) (edited on 2017-01-03 18:15 (UTC) by KgOfHedgehogs)
@petronny, any executable with gui. For example spyder and jupyter qtconsole
petronny commented on 2017-01-03 05:32 (UTC)
@KgOfHedgehogs Hi, could you tell us which binary is executed?
KgOfHedgehogs commented on 2017-01-02 22:55 (UTC) (edited on 2017-01-02 23:26 (UTC) by KgOfHedgehogs)
Reinstalled anaconda few times (and also reinstalled linux), still getting this error:
"
This application failed to start because it could not find or load the Qt platform plugin "xcb"
in "".
Reinstalling the application may fix this problem.
Aborted (core dumped)
"
Doesn't find solution in google
shadofren commented on 2016-11-29 02:38 (UTC) (edited on 2016-11-29 08:56 (UTC) by shadofren)
@arux
You must activate the environment first.
During your installation there is an instruction like below:
Please run
$ source /opt/anaconda/bin/activate root
$ source /opt/anaconda/bin/deactivate root
Use the first command to activate the default environment root for the current terminal.
conda command will then be available.
OR
add anaconda bin directory into your path:
$ echo "export PATH="/opt/anaconda/bin:$PATH"" >> ~/.bash_profile
and then reload your .bash_profile
$ source ~/.bash_profile
arux commented on 2016-11-22 14:36 (UTC)
Hello. I launched the install of anaconda using the pamac manager but I'm stuck then. Neither anaconda nor conda commands are recognized in the terminal. Any insights ? thanks.
petronny commented on 2016-10-29 14:29 (UTC)
@dundee sry, that's my fault. I uploaded a wrong patch when copied it from shell... Now It is fixed.
petronny commented on 2016-10-26 08:33 (UTC) (edited on 2016-10-26 08:35 (UTC) by petronny)
Well, I think I have confused with anaconda and conda before.
anaconda should provide the enviroment only, but not the executable conda. It do should avoid downloading the libraries when cloning it. And I think it should be ran in offline-mode forever.
conda should have the abilities to switch channels and download packages which have newer version than them in anaconda.
So, I think these should be done for anaconda:
1. add back the default package cache and urls(optional) in conda-meta
2. add a script, /usr/bin/anaconda, to call /opt/anaconda/bin/conda in offline-mode
3. link /opt/anaconda/bin/{,de}activate to /usr/bin/anaconda-{,de}activate
4. add anaconda.install to list the executables installed and tell everyone to use python-conda instead for online-mode after the installation.
PS. It doesn't have to be conflict with python-conda.
@immae Actually I rarely use anaconda... I will be watching this package but I don't want to maintain it, sry
Pinned Comments
mgd commented on 2024-08-08 11:19 (UTC)
I had to set CRYPTOGRAPHY_OPENSSL_NO_LEGACY=true in the environment to start Anaconda. While this is easy to research it might be helpful to add this by default or at least emit a note stating that.
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.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
.