<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.williams-net.org/index.php?action=history&amp;feed=atom&amp;title=Repositories_for_Miniconda</id>
	<title>Repositories for Miniconda - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.williams-net.org/index.php?action=history&amp;feed=atom&amp;title=Repositories_for_Miniconda"/>
	<link rel="alternate" type="text/html" href="https://wiki.williams-net.org/index.php?title=Repositories_for_Miniconda&amp;action=history"/>
	<updated>2026-06-01T02:46:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.40.1</generator>
	<entry>
		<id>https://wiki.williams-net.org/index.php?title=Repositories_for_Miniconda&amp;diff=29&amp;oldid=prev</id>
		<title>DrEdWilliams: Created page with &quot;Conda, the package manager from Anaconda, is now available as either a RedHat RPM or as a Debian package. The packages are the equivalent to the Miniconda installer which only...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.williams-net.org/index.php?title=Repositories_for_Miniconda&amp;diff=29&amp;oldid=prev"/>
		<updated>2019-08-03T01:23:26Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Conda, the package manager from Anaconda, is now available as either a RedHat RPM or as a Debian package. The packages are the equivalent to the Miniconda installer which only...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Conda, the package manager from Anaconda, is now available as either a RedHat RPM or as a Debian package. The packages are the equivalent to the Miniconda installer which only contains conda and its dependencies.  You can use yum or apt-get to install, uninstall and manage conda on your system. To install conda follow the instructions for your Linux distribution.&lt;br /&gt;
&lt;br /&gt;
To install the RPM on RedHat, CentOS, Fedora distributions and other RPM based distributions such as openSUSE, download the gpg key and add a repository configuration file for conda.&lt;br /&gt;
&lt;br /&gt;
 # Import our gpg public key&lt;br /&gt;
 rpm --import https://repo.anaconda.com/pkgs/misc/gpgkeys/anaconda.asc&lt;br /&gt;
 # Add the Anaconda repository&lt;br /&gt;
 cat &amp;lt;&amp;lt;EOF &amp;gt; /etc/yum.repos.d/conda.repo&lt;br /&gt;
 [conda]&lt;br /&gt;
 name=Conda&lt;br /&gt;
 baseurl=https://repo.anaconda.com/pkgs/misc/rpmrepo/conda&lt;br /&gt;
 enabled=1&lt;br /&gt;
 gpgcheck=1&lt;br /&gt;
 gpgkey=https://repo.anaconda.com/pkgs/misc/gpgkeys/anaconda.asc&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
Conda is ready for install on your RPM based distribution.&lt;br /&gt;
&lt;br /&gt;
 # Install it!&lt;br /&gt;
 yum install conda&lt;br /&gt;
&lt;br /&gt;
To install on Debian based Linux distributions such as Ubuntu, download the public gpg key and add the conda repository to the sources list.&lt;br /&gt;
&lt;br /&gt;
 # Install our public gpg key to trusted store&lt;br /&gt;
 curl https://repo.anaconda.com/pkgs/misc/gpgkeys/anaconda.asc | gpg --dearmor &amp;gt; conda.gpg&lt;br /&gt;
 install -o root -g root -m 644 conda.gpg /etc/apt/trusted.gpg.d/&lt;br /&gt;
 # Add our debian repo&lt;br /&gt;
 echo &amp;quot;deb [arch=amd64] https://repo.anaconda.com/pkgs/misc/debrepo/conda stable main&amp;quot; &amp;gt; /etc/apt/sources.list.d/conda.list&lt;br /&gt;
&lt;br /&gt;
Conda is ready to install on you Debian based distribution.&lt;br /&gt;
&lt;br /&gt;
 # Install it!&lt;br /&gt;
 apt-get update&lt;br /&gt;
 apt-get install conda&lt;br /&gt;
&lt;br /&gt;
Check to see if the installation is successful by typing:&lt;br /&gt;
&lt;br /&gt;
 source /opt/conda/etc/profile.d/conda.sh&lt;br /&gt;
 conda -V&lt;br /&gt;
 conda 4.5.11&lt;br /&gt;
&lt;br /&gt;
Installing conda packages with the system package manager makes it very easy to distribute conda across a cluster of machines running Linux without having to worry about any non privileged user modifying the installation. Any non privileged user simply needs to run `source /opt/conda/etc/profile.d/conda.sh` to use conda.&lt;br /&gt;
&lt;br /&gt;
Administrators can also distribute a .condarc file at /opt/conda/.condarc so that a predefined configuration for channels, package cache directory and environment locations is pre-seeded to all users in a large organization. A sample configuration could like:&lt;br /&gt;
&lt;br /&gt;
 channels:&lt;br /&gt;
 - defaults&lt;br /&gt;
 pkg_dirs:&lt;br /&gt;
 - /shared/conda/pkgs&lt;br /&gt;
 - $HOME/.conda/pkgs&lt;br /&gt;
 envs_dirs:&lt;br /&gt;
 - /shared/conda/envs&lt;br /&gt;
 - $HOME/.conda/envs&lt;br /&gt;
&lt;br /&gt;
These rpm and debian packages provide another way to setup conda inside a docker container.&lt;br /&gt;
&lt;br /&gt;
It is recommended to use this installation in a read only manner and upgrade conda using the respective package manager only.&lt;br /&gt;
&lt;br /&gt;
If you’re new to conda, check out the documentation at https://conda.io/docs/&lt;/div&gt;</summary>
		<author><name>DrEdWilliams</name></author>
	</entry>
</feed>