cant run mlat-server --help
i have installed all the pre-reqs, but when i attempt to run mlat-server --help i get: "mlat-server: command not found"
any guidance would be greatly appreciated
Probably "." isn't in your PATH, try ./mlat-server
Tried ./mlat-server --help
Results in..
Traceback (most recent call last):
File "./mlat-server", line 21, in
It works for me, so there's something about your python install that you'll have to work out.
ok, i knew there wasnt much support for the server, so thanks for trying anyway
if its any help, the client software runs fine
Ah, if you have the client software installed systemwide, that interferes with the server packages. Try uninstalling the client, or run the server under virtualenv.
im running a VM now with only server and prerequisites installed. does this give any hints as to whats going on?

Isn't the error message selfexplanatory?
yes, i got that, i posted wrong screen, the error im getting says numpy module not found. but it is installed, ive checked import numpy
is it possible its defaulting installs to python 2.7 and not 3?
The shebang line explictly invokes python3.4, so nope, it's not that. When you check that numpy is importable, are you running python3?
thats the thing, i run python and import numpy, it goes fine, then run python3 import numpy fails
Show me exactly what you're running and what you get back.
ive gone back and installed each prerequisite using python3 instead of just python command and i can use mlat-server now. sorry to be a pain i now you dont like providing alot of support. is it possible you can throw up an assembled simple example mlat-server arguments
#!/bin/sh
D=`dirname $0`
MLAT_CPU_PROFILE=1 $D/mlat-server \
--client-listen 40147:40147 \
--basestation-connect localhost:31003 \
--filtered-basestation-connect localhost:31004 \
--write-csv $D/positions.csv \
--work-dir $D \
--check-leaks \
>>$D/server.log 2>&1 &
echo "$!" >$D/server.pid
trying to activate the tools/sync and coverage pages
i have apache installed and have synlinked tools to www root. am i missing anything because the page is discriptive text and dosnt refresh to show sync status, same for coverage
sorry for asking alot of questions, im trying to learn/understand this software the best i can
Coverage maps requires that you generate the tiles separately e.g. from cronjob. The sync page requires that you make sync.json (generated by the server) available in the same dir - e.g. symlink it.
Hello.
I can not start the server with the same error.
”RuntimeError: Please update AGPL_SERVER_CODE_URL in mlat/server/config.py”
How is this update done?

Do as the RuntimeError says.
Go into
mlat/server/
use editor to open config.py
nano config.py
Find the line
"#AGPL_SERVER_CODE_URL = "https://github.com/mutability/mlat-server"
update the link / remove hashtag
Thank you. The update issue has been resolved. However, other errors can not be resolved yet. I installed the prerequisite module but it does not work. The import of modules seems to go wrong.
Installation of pykalman is completed However, Pearlman's Ehler comes out.

Hello I also have a problem with mlat.server.main. I can't import this module and I don't know where to find it! Can anyone help me? I tried a lot of version of python in Windows and macOS. Thanks!