Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Anaconda for Linux [closed]

Tags:

linux

anaconda

I am trying to install Anaconda for Linux (Linux Mint 17.2 Rafaela, 14.04.3 LTS, Trusty Tahr).

I see a warning:

WARNING: Machine does not appear to be ppc64le. This software was sepicically build for POWER8 running Ubuntu 14.04 LTS. Are sure you want to continue the installation? [yes|no]

What should I do?

like image 725
Oktu Avatar asked Aug 01 '17 10:08

Oktu


People also ask

Can I install Anaconda in Linux?

To install Anaconda, you'll need to download the installer Bash script from the Anaconda website. At the time of writing, the latest version is Anaconda3-2021.11-Linux-x86_64.sh. 1. Open your terminal and run the below commands to download and save Anaconda's installer Bash script to your /tmp directory.

Why does Anaconda take so long to install?

NOTE: the installer we'll be downloading and installing is larger than the average file, because it contains Python, associated packages, a code editor, and some other toys. It may take 15-20 minutes in total to download and install when executing the commands.

Why my Anaconda is not opening?

This is often the result of a corrupted . condarc file. To resolve, delete the . condarc file and restart Navigator.


1 Answers

Is the machine a power8 or x86? More than likely you have an x86 cpu so you need to install that version of Anaconda. Anaconda Repo. You can use the command uname -a from the command line to print the kernel version. Normally you would see something in the output that says like "x86_64".

As for the anaconda versions, notice the differences between these two file names.

  • Anaconda2-4.4.0-Linux-x86_64.sh
  • Anaconda2-4.4.0-Linux-ppc64le.sh

:::EDIT::: Based on the your warning "WARNING: Machine does not appear to be ppc64le.", it sounds like you have an x86 cpu. To be sure, run the command uname -a.

like image 153
J'e Avatar answered Oct 06 '22 15:10

J'e