Error: rsudp failed to install

I already tried all the errors by installing that, that’s why I opened another case.
The first thing I do is install the RS O.S, downloading the file from this link: raspberryShake-public / Raspshake Sd Img · GitLab

Then I pass this file to a 16GB class 10 formatted SD, I unzip the file and then I pass it to RS4D, I wait approximately 15 minutes, when it finishes and I can finally enter http://rs.local, where I configure and share the data.

I make my connection through SSH, I install miniconda3 from this link: Install Miniconda 3 on Raspberry Pi · GitHub

Later I do the video tutorial:
git clone https://gist.github.com/simoncos/a7ce35babeaf73f512be24135c0fbafb

cd rsudp
bash unix-install-rsudp.sh

It tells me that I have a miniconda error and that it cannot create the environment, then what I do:

conda create --name rsudp python=3.4.3 #Is the version that installs rsudp

This says that the address does not exist: /home/myshake/.config/rsudp/rsudp_settings.JSON

I create it manually:

cd /home/myshake
mkdir .config
cd .config
mkdir rsudp
cd rsudp
sudo nano rsudp_settings.JSON

And right there I copy this data:

{
"settings": {
    "port": 8888,
    "station": "Z0000",
    "output_dir": "/home/myshake",
    "debug": true},
"printdata": {
    "enabled": false},
"write": {
    "enabled": false,
    "channels": ["all"]},
"plot": {
    "enabled": true,
    "duration": 90,
    "spectrogram": true,
    "fullscreen": false,
    "kiosk": false,
    "eq_screenshots": false,
    "channels": ["all"],
    "deconvolve": true,
    "units": "CHAN"},
"forward": {
    "enabled": false,
    "address": ["192.168.1.254"],
    "port": [8888],
    "channels": ["all"],
    "fwd_data": true,
    "fwd_alarms": false},
"alert": {
    "enabled": true,
    "channel": "HZ",
    "sta": 6,
    "lta": 30,
    "threshold": 3.95,
    "reset": 0.9,
    "highpass": 0.8,
    "lowpass": 9,
    "deconvolve": false,
    "units": "VEL"},
"alertsound": {
    "enabled": false,
    "mp3file": "doorbell"},
"custom": {
    "enabled": false,
    "codefile": "n/a",
    "win_override": false},
"tweets": {
    "enabled": false,
    "tweet_images": true,
    "api_key": "n/a",
    "api_secret": "n/a",
    "access_token": "n/a",
    "access_secret": "n/a",
    "extra_text": ""},
"telegram": {
    "enabled": false,
    "send_images": true,
    "token": "n/a",
    "chat_id": "n/a",
    "extra_text": ""},
"rsam": {
    "enabled": false,
    "quiet": true,
    "fwaddr": "192.168.1.254",
    "fwport": 8887,
    "fwformat": "LITE",
    "channel": "HZ",
    "interval": 10,
    "deconvolve": false,
    "units": "VEL"}
}

From there I try the command again:

cd rsudp
bash unix-install-rsudp.sh

Then I have errors with gpsd and saw that error is fixed by what stormchaser says here: Gpsd missing, not started at boot

#ListenStream=[::1]:2947

Then I no longer get errors, until almost at the end, it says that scipy is missing something, I fix it, and it shows me the same thing but with another code, I saw that it is not compiled and that is why I have error after error, try:

python3 -m pip install scipy
udo apt-get install gfortran

and it got to a point where it got stuck running pcipy from wheels.