-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing directly on Linux #338
Comments
I have received a mail from NASA :For option A you can simply clone the repository then following the instructions under Getting started (https://github.com/nasa/nos3?tab=readme-ov-file#getting-started) assuming you navigate into the cloned repository. For example:
but make step has error : |
i success install after clean optionB |
Let us know if you continue to run into issues you think we can help with! |
Would option A still work since I noticed someone else had issues with it? I don't have a way of creating a high powered VM so using option A directly on a Linux machine would be my only option for getting high GPU performance |
Option A, make prep, make passed success, upgrade python version with mini conda. |
aftere version upgrade (ubuntu 18 -> 20), almost service are running ; but dbus error occured. |
It seems to cause permission issues and issues with docker whenever you try and install directly on Linux |
Can someone help with the docker issue? |
The issue has been resolved. |
I solved problems. |
#!/bin/bash -i Convenience script for NOS3 developmentUse with the Dockerfile in the deployment repositoryhttps://github.com/nasa-itc/deploymentSCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) Check that local NOS3 directory existsif [ ! -d $USER_NOS3_DIR ]; then Check that configure build directory existsif [ ! -d $BASE_DIR/cfg/build ]; then echo "Make data folders..." FSW Sidemkdir $FSW_DIR/data 2> /dev/null GSW Sidemkdir /tmp/nos3 2> /dev/null echo "Create ground networks..." echo "Launch GSW..." echo "Create NOS interfaces..." Note only currently working with a single spacecraftexport SATNUM=1 Spacecraft Loopfor (( i=1; i<=$SATNUM; i++ ))
done echo "NOS Time Driver..." echo "Docker launch script completed!" |
Is there a certain process I would need to follow for installing NOS3 directly on a Linux machine? I would just clone the repo with docker installed and run make clean, make prep, make, etc...? Just confirming that there aren't anymore additional steps before requesting a independent Linux machine since the machine I'm using for a VM is not powerful enough to run Cosmos5.
The text was updated successfully, but these errors were encountered: