Changes between Version 52 and Version 53 of en/ProgrammingRobotsCourse/GettingWwwInfo


Ignore:
Timestamp:
Nov 13, 2024, 1:03:30 PM (8 months ago)
Author:
Ales Horak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • en/ProgrammingRobotsCourse/GettingWwwInfo

    v52 v53  
    4646(Full example [raw-attachment:news.py:wiki:en/ProgrammingRobotsCourse/GettingWwwInfo news.py])
    4747
    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:
     48In 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):
    4949{{{
    50 sudo pip2 install --target='/opt/Softbank Robotics/Choregraphe Suite 2.5/lib/python2.7/site-packages' \
    51     bs4
     50sudo $PEPPER_ROOT/pyenv/bin/pip2 install --target='/opt/Softbank Robotics/Choregraphe Suite 2.5/lib/python2.7/site-packages' \
     51    beautifulsoup4==4.0.4
    5252}}}
    5353Use `pip` instead of `pip2` in older linux systems.