ID photo of Ciro Santilli taken in 2013 right eyeCiro Santilli OurBigBook logoOurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
Tested on Ubuntu 20.04:
mkdir -p ~/miniconda3
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
rm -rf ~/miniconda3/miniconda.sh
Add to your .bashrc:
PATH="$PATH:$HOME/miniconda3/bin"
and then to use it on a shell e.g. with Python 3.9 create the environment with:
conda create -y -n mytest3.9 python=3.9
and then use it with:
eval "$(command conda 'shell.bash' 'hook' 2> /dev/null)"
conda activate mytest3.9
Now you can use python and pip normally from inside that mytest3.9 environment.
At that time, the exact installer under latest appears to have been: repo.anaconda.com/miniconda/Miniconda3-py311_23.11.0-2-Linux-x86_64.sh

Ancestors (11)

  1. Conda
  2. Python package manager
  3. Python (programming language)
  4. List of programming languages
  5. Programming language
  6. Software
  7. Computer
  8. Information technology
  9. Area of technology
  10. Technology
  11. Home