ROS Discourse is for news and general interest discussions. ROS Answers provides a Q&A site which can be filtered by tags to make sure the relevant people can find and/or answer the question, and not overload everyone with hundreds of posts.
There are the ROS2 Nightly Docker images that install the nightly fat archive the build farm publishes. If you’d like to get a jump start on porting your package to Foxy, that’s what some of us use to smoke test with. Just be aware that not all of ROS2 is included in the nightly fat archive, i.e. you can’t just apt install missing ros packages. But you could build them from source in a colcon overlay workspace.
docker pull osrf/ros2:nightly
There are also development Dockerfiles for building all of ROS2 master branch from source:
Sorry for the necro post, but I was following the instructions for installing on Ubuntu Focal 20 and hit the same issue. Searching Google lead me here (first link). Looking at the the various release notes, it seems like this should work now, so wanted to update here.
I had to make one small edit to my /etc/apt/sources.list.d/ros2-latest.list so it would only pull sources for amd64 architecture - it now looks like this:
deb [arch=amd64] http://packages.ros.org/ros2/ubuntu focal main
With this I’m able to install and run the talker/listener example.
FYI, we have a documentation bug about this open at https://github.com/ros2/ros2_documentation/pull/744 . I think that this problem only happens when installing 20.04 in certain ways, since we didn’t see it in Foxy pre-release testing. In any case, that documentation bug should fix it once it is merged.
ROS Discourse is for news and general interest discussions. ROS Answers provides a Q&A site which can be filtered by tags to make sure the relevant people can find and/or answer the question, and not overload everyone with hundreds of posts.