Package Details: ros-melodic-desktop-full 1.4.1-3

Git Clone URL: https://aur.archlinux.org/ros-melodic-desktop-full.git (read-only, click to copy)
Package Base: ros-melodic-desktop-full
Description: ROS - A metapackage to aggregate several packages.
Upstream URL: https://github.com/ros/metapackages
Keywords: melodic morena robot robotics ros
Licenses: BSD
Submitter: GPereira
Maintainer: None
Last Packager: bionade24
Votes: 12
Popularity: 0.000000
First Submitted: 2018-05-13 18:47 (UTC)
Last Updated: 2021-03-23 03:30 (UTC)

Dependencies (7)

Required by (0)

Sources (1)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 9 Next › Last »

bionade24 commented on 2019-11-09 15:12 (UTC)

@M070Ch: That's not our buiseness. Please comment at the ogre package.

M070Ch commented on 2019-11-09 07:10 (UTC)

I've tried to install this package by two weeks and I got always the same message: Error downloading sources: ogre-1.9, How i can solve it?. Thanks.

abnersn commented on 2019-10-10 12:33 (UTC) (edited on 2019-10-10 12:33 (UTC) by abnersn)

@Thraen could you ellaborate on how you got the package to compile? In what file exactly should sed be used?

Thraen commented on 2019-10-09 12:04 (UTC)

Hi, it looks like the new boost version doesn't create cmake/boost_python3_{ver}/ folders anymore. It breaks some packages' compilation. Using sed to replace "find_package(Boost REQUIRED COMPONENTS {components} python3)" by "find_package(Boost REQUIRED COMPONENTS {components} python)" seems to do the trick. I may have a bad setup, but that's the only way i got it working, even with a lot of reinstalls of multiple packages.

<deleted-account> commented on 2019-06-19 09:52 (UTC)

I had two problems spawning models within gazebo. The first was:

File "/opt/ros/melodic/lib/gazebo_ros/spawn_model", line 25, in <module>
    from urlparse import urlsplit, SplitResult
ModuleNotFoundError: No module named 'urlparse'

I fixed it with sed -i.bak 's/urlparse/urllib.parse/' /opt/ros/melodic/lib/gazebo_ros/spawn_model

The second was:

File "/opt/ros/melodic/lib/python3.7/site-packages/gazebo_msgs/srv/_SpawnModel.py", line 103, in serialize
    _x = _x.encode('utf-8')
AttributeError: 'bytes' object has no attribute 'encode'

I fixed it with sed -i.bak 's/python3 or type(_x) == unicode/type(_x) == str/' /opt/ros/melodic/lib/python3.7/site-packages/gazebo_msgs/srv/_SpawnModel.py

<deleted-account> commented on 2019-06-19 09:42 (UTC)

I had two problems spawning models within gazebo. The first was:

File "/opt/ros/melodic/lib/gazebo_ros/spawn_model", line 25, in <module>
    from urlparse import urlsplit, SplitResult
ModuleNotFoundError: No module named 'urlparse'

I fixed it with sudo sed -i.bak 's/urlparse/urllib.parse/' /opt/ros/melodic/lib/gazebo_ros/spawn_model

The second was:

File "/opt/ros/melodic/lib/python3.7/site-packages/gazebo_msgs/srv/_SpawnModel.py", line 103, in serialize
    _x = _x.encode('utf-8')
AttributeError: 'bytes' object has no attribute 'encode'

I fixed it with sudo sed -i.bak 's/python3 or type(_x) == unicode/type(_x) == str/' /opt/ros/melodic/lib/python3.7/site-packages/gazebo_msgs/srv/_SpawnModel.py