No, this is not possible:
Currently supported install methods include the Anaconda installer and the miniconda installer.
From here
You will either need to install miniconda/anaconda, or use another package manager.
Alternatively, you can use miniforge and its variants, but they still all come "with their own version of python". I don't know of a way to use conda with an existing installation of python
Answer from FlyingTeller on Stack OverflowVideos
No, this is not possible:
Currently supported install methods include the Anaconda installer and the miniconda installer.
From here
You will either need to install miniconda/anaconda, or use another package manager.
Alternatively, you can use miniforge and its variants, but they still all come "with their own version of python". I don't know of a way to use conda with an existing installation of python
There is a conda-forge alternative to miniconda, https://github.com/conda-forge/miniforge#download. This offers many packages not found with anaconda. You can have multiple versions of Python installed, so find the equivalent version of Python that you have installed and select that with the conda command and then pull all the other packages you need to match that from the anaconda or conda-forge trees. You can't mix conda with any other environment manager (and use of pip is possible but not a good idea), but the conda environment works well.
can be achieved by bash miniconda.sh -b (thanks @darthbith)
The command line usage for this can only be seen with -h flag but not --help, so I missed it.
To install the anaconda to another place, use the -p option:
bash anaconda.sh -b -p /some/path
Silent installation can be done like this, but it doesn't update the PATH variable so you can't run it after the installation with a short command like conda:
cd /tmp/
curl -LO https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -u
Here -b means batch/silent mode, and -u means update the existing installation of Miniconda at that path, rather than failing.
You need to run additional commands to initialize PATH and other shell init scripts, e.g. for Bash:
source ~/miniconda3/bin/activate
conda init bash
Python 3.7
64 bits
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
32 bits
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86.sh
bash Miniconda3-latest-Linux-x86.sh
Close your terminal and open again:
conda list
conda init fish
For make update:
conda update conda
You can use the link given below and install the software:
- https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html