How do I get previous versions of Anaconda or older versions of packages?
PackageName
with the name of the desired package.conda search PackageName
.I am behind a firewall. How can I download Anaconda?
How can I install Anaconda on an air-gapped computer?
In what folder should I install Anaconda on Windows?
C:\anaconda
. Do not install into paths that contain spaces such as C:\Program Files
or that include Unicode
characters outside the 7-bit ASCII character set. This helps ensure correct operation and no errors when using any open-source tools in either Python 3 or Python 2 conda environments.Should I add Anaconda to the Windows PATH?
Should I add Anaconda to the macOS or Linux PATH?
yes
to allow the installer to initialize Anaconda3. If you enter no
, then conda will not modify your shell scripts at all. In order to initialize after the installation process is done, first run source <path to conda>/bin/activate
and then run conda init
.<path-to-anaconda>
with the actual path of your installed Anaconda file.What is the default path for installing Anaconda?
pkg
installers (such as osx-64
and osx-arm64
), Anaconda is installed in /opt/anaconda3
.
sh
installers, Anaconda is installed in the home directory.
C:\Users\<your-username>\Anaconda3\
/Users/<your-username>/anaconda3
for the shell install, /opt/anaconda3
for the graphical install. See the macOS install instructions.
/home/<your-username>/anaconda3
I already have Python installed. Can I install Anaconda?
echo $PATH
.
echo %PATH%
.
which python
.
where python
.
conda list
.How can I use Anaconda on older systems?
How can I use TKinter?
tk
is installed:If it is not installed, run:Python programs can use TKinter with import Tkinter
on Python 2 or import tkinter
on Python 3.How can I use Cython on macOS?
How can I use Theano?
conda install theano
.
conda install gcc theano
.
conda install theano
.How can I use GPUs with Anaconda?
How is CPython compiled?
How do I cite Anaconda in an academic paper?