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
 
I got stuck here too.

You still have to install the installer. You can download from the conda website a version of the installer that matches your python version, or you can use the run the miniconda-installer you already have in your /usr/local/bin directory that was installed with the linux-conda-installer package. The installer you already have will install the latest.

However, I keep running into an issue:
File "concurrent/futures/process.py", line 173, __init__
File "multiprocessing/queues.py", line 43, __init__
File "multiprocessing/context.py", line 68, in Lock
File "multiprocessing/synchronize.py", line 169, in __init__
File "multiprocessing/synchronize.py", line 57, in __init__
OSError: [Errno 38] Function not implemented
[5422] Failed to execute script 'entry_point' due to unhandled exception!

In searching the net, it seems there is a python module that doesn't work having to do with concurrent multiprocessing with python.

I have not overcome this issue.
 
Back
Top