miniconda-installer returns md5sum error

Hello all,

I am trying to set up a Conda environment for my FreeBSD via the miniconda-installer. The installer downloads the latest Miniconda_xxxx.sh file, and runs it. After asking me which directory I wanna use as the default (which I choose the default), the installer returns "md5sum: -: No such file or directory". Not sure if the script itself is not downloading the md5sum check file, or something else.

I have tried inside bash environment as well, and have linux compatibility (linux_enable="YES" in rc.conf) enabled.

Am I missing anything? Maybe a dependency or something else? Any feedback would be more than appreciated :)

Thanks in advance.
Leonardo.
 
That's exactly the installer that I'm using, but it's returning the md5sum error.
I'm not sure what you're doing?

Code:
# kldload linux64
# pkg install linux-miniconda-installer
# sysrc linux_enable="YES"
# service linux start
That's all that was needed.

Code:
dice@fbsd-test:~ % conda-shell

Starting Linux bash shell to ensure that Conda packages are fully functional.

Note that uname will return Linux rather than FreeBSD and some other aspects
of the environment will also indicate Linux.

Type "exit" or "Ctrl+d" to return to your FreeBSD shell.

bash-4.2$
 
I'm not sure what you're doing?

Code:
# kldload linux64
# pkg install linux-miniconda-installer
# sysrc linux_enable="YES"
# service linux start
That's all that was needed.

Code:
dice@fbsd-test:~ % conda-shell

Starting Linux bash shell to ensure that Conda packages are fully functional.

Note that uname will return Linux rather than FreeBSD and some other aspects
of the environment will also indicate Linux.

Type "exit" or "Ctrl+d" to return to your FreeBSD shell.

bash-4.2$
SirDice thanks a lot! It works perfectly now. What I was doing wrong is that I was trying to run "miniconda-installer" command directly in the terminal, and then getting that error. Now, with your guideline, I enter the conda-shell and run the Miniconda bash file downloaded from the website. Thanks once more.
 
As mentioned above, I can successfully run the conda-shell
But, trying other conda commands like conda list and conda info throws an error saying /bin/sh: conda: not found
Any help is greatly appreciated
 
Back
Top