...
Do you accept the license terms? [yes|no]
[no] >>> yes
Miniconda3 will now be installed into this location:
/root/miniconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/root/miniconda3] >>> /home/osmc/miniconda3
PREFIX=/home/osmc/miniconda3
Unpacking payload ...
Miniconda3-latest-Linux-aarch64.sh: line 411: /home/osmc/miniconda3/conda.exe: No such file or directory
Miniconda3-latest-Linux-aarch64.sh: line 413: /home/osmc/miniconda3/conda.exe: No such file or directory
I tried to run the script as user and as root but with no success.
In my original post, it is runned as a root (at step [/root/miniconda3] >>> /home/osmc/miniconda3 I changed suggested root path to local one).
osmc@rpi4:~$ bash Miniconda3-latest-Linux-armv7l.sh
WARNING:
Your processor does not appear to be an armv7l. This software
was sepicically build for the Raspberry Pi 2 running raspbian wheezy
(or above).
Are sure you want to continue the installation? [yes|no]
[no] >>>
if [[ `uname -m` != 'armv7l' ]]; then
echo -n "WARNING:
Your processor does not appear to be an armv7l. This software
was sepicically build for the Raspberry Pi 2 running raspbian wheezy
(or above).
Are sure you want to continue the installation? [yes|no]
[no] >>> "
read ans
if [[ ($ans != "yes") && ($ans != "Yes") && ($ans != "YES") &&
($ans != "y") && ($ans != "Y") ]]
then
echo "Aborting installation"
exit 2
fi
fi
Well, miniconda is a package manager. There shouldn’t be any hacking, so I wouldn’t use setarch there.
I believe that docker is maybe the best solution (although a bit an overkill).
Thanks for helping me guys.
Best regards.