Changes between Version 52 and Version 53 of en/ProgrammingRobotsCourse/GettingWwwInfo
- Timestamp:
- Nov 13, 2024, 1:03:30 PM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
en/ProgrammingRobotsCourse/GettingWwwInfo
v52 v53 46 46 (Full example [raw-attachment:news.py:wiki:en/ProgrammingRobotsCourse/GettingWwwInfo news.py]) 47 47 48 In virtual robot, if you get a runtime error: ''No module named bs4'', you may need to install the package into the Choregraphe environtment via :48 In virtual robot, if you get a runtime error: ''No module named bs4'', you may need to install the package into the Choregraphe environtment via ($PEPPER_ROOT comes from InstallationInstructions): 49 49 {{{ 50 sudo pip2 install --target='/opt/Softbank Robotics/Choregraphe Suite 2.5/lib/python2.7/site-packages' \51 b s450 sudo $PEPPER_ROOT/pyenv/bin/pip2 install --target='/opt/Softbank Robotics/Choregraphe Suite 2.5/lib/python2.7/site-packages' \ 51 beautifulsoup4==4.0.4 52 52 }}} 53 53 Use `pip` instead of `pip2` in older linux systems.