Note: Adding new workers to the IO network is currently disabled. Please continue to check our Discord announcements channel for details on when new workers can be added.
Delete Existing Docker Containers & Images
Execute the following commands in the MacOS Terminal to delete existing Docker containers, images, networks, and volumes.
docker stop $(docker ps -qa)
docker rm $(docker ps -qa)
docker rmi -f $(docker images -qa)
docker volume rm $(docker volume ls -qf)
docker network rm $(docker network ls -q)
Download The IO Launch Binary
- Set executable permissions on the binary using
chmod +x io_net_launch_binary_mac
- Modify the command below and set
--device_id="new-device-id"
,--user_id="your-user-id"
, and--device_name="new-device-name"
to match your Device ID, User ID, and preferred worker name - Copy and paste the modified command into the terminal, hit enter to execute the binary, and then follow the on-screen prompts to authenticate and complete the setup
./io_net_launch_binary_mac --device_id="new-device-id" --user_id="your-user-id" --operating_system="macOS" --usegpus=false --device_name="new-device-name"
Please note that to run the binary, you will need to execute the command above from the directory you downloaded the binary to. Unless you've changed the download directory in your browser, this should default to the
Downloads
directory. In Terminal, you can change over (cd
) to this directory using the command below:cd /Users/username/Downloads
Please change
username
in the command above to match the username you use to login to MacOS with before executing the command.Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article