-
-
Notifications
You must be signed in to change notification settings - Fork 85
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
Using Tidepool on Linux #1625
Comments
Hi @sonocculture ! There are some issues with the Docker setup at the moment, so I would recommend using the approach you mentioned in (2). While we don't officially support Linux at the moment, I use Linux to develop Uploader, so may be able to help you with any issues that you run into. |
Using Kubuntu 24.10, I wanted to share some of the setbacks I found and fixes. gh repo clone tidepool-org/uploader tidepool_uploader
cd tidepool_uploader
git checkout tags/v2.60.0 -b v2.60.0 # Current release tag at this moment.
yarn
yarn build Which resulted in errors about "--profile --colors" being unknown options, so I removed them manually from package.json using vim and the command Onward then... yarn build
yarn start --no-sandbox # Don't want to fix sandbox permissions and security for this test. Resulted in
This comes up in later versions of Node. So I installed nvm and swtiched to the version needed and found success. wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
nvm install v18.17.1 # So long as you setup NVM correctly or restarted your terminal
nvm use v18.17.1
yarn start --no-sandbox # Don't want to fix sandbox permissions and security for this test. Success. |
Glad you got it working @m1st0 ! Indeed, you do need to use the version of Node.js we specify in To be honest, I haven't used |
I want to install the Tidepool Uploader on Ubuntu 22.04 following the instructions helpfully provided here. After a few hours of sleuthing, I still don't understand how Docker works and how to follow these instructions:
docker-compose build
docker-compose up -d
docker-compose build
from the path of where I cloned the repository, and then Docker takes care of the rest?Would it be possible to expand on these instructions for less experienced linux users?
Feel free to delete if this is not the right place for questions like these.
The text was updated successfully, but these errors were encountered: