I had this package installed without any problems, then I uninstalled it with
$ yaourt -R anaconda
to resolve some issues i had with it regarding other software that used it. Then I tried to reinstall it with
$ yaourt -S anaconda --tmp=/path/to/tmp
(my tmpfs is too small). But it threw me a million errors in the end. The errors all looked like this
anaconda: /opt/anaconda/pkgs/sphinx-1.5.6-py36_0/lib/python3.6/site-packages/Sphinx-1.5.6-py3.6.egg/sphinx/themes/basic/static/minus.png exists in filesystem
with different files / packages. So i seems like my anaconda is still installes? I can't use it tho, because my bash tells me it cant find the command conda. Any idea on how to resolve this?
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: | 111 |
Popularity: | 0.23 |
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-wsl2-gitAUR, mesa-amd-bc250AUR, mesa-gitAUR, amdonly-gaming-mesa-gitAUR, 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 »
cripcate commented on 2017-08-14 11:51 (UTC)
leshow commented on 2017-08-09 02:43 (UTC) (edited on 2017-08-09 02:48 (UTC) by leshow)
I can't seem to create a new conda env. After I install this package, I do:
$ source /opt/anaconda/bin/activate root
$ conda create -n myroot --clone /opt/anaconda
(root) > ~CONDA_PREFIX conda create -n myconda --clone /opt/anaconda
Source: /opt/anaconda
Destination: /home/leshow/.conda/envs/myconda
The following packages cannot be cloned out of the root environment:
- conda-env-2.6.0-0
- conda-4.3.21-py36_0
Packages: 200
Files: 0
ERROR conda.core.link:_execute_actions(337): An error occurred while installing package 'defaults::expat-2.1.0-0'.
CondaError: Cannot link a source that does not exist. /opt/anaconda/pkgs/expat-2.1.0-0/lib/libexpat.a
Attempting to roll back.
CondaError: Cannot link a source that does not exist. /opt/anaconda/pkgs/expat-2.1.0-0/lib/libexpat.a
any ideas? pacman reports that I have expat installed.
xiaolongfdwq commented on 2017-05-31 14:56 (UTC)
Hi, I encountered "missing libselinux.so.1" error message, install libselinux from aur solved the problem, maybe libselinux should be counted as one dependency.
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.
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
.