I’m running your course in my “own” real Jetbot environment,
I followed steps to create the Python3 Environment and I’m stuck at this command “source ~/.py3venv/bin/activate”
Below are the errors:
ubuntu@grace:~$ cd ~/catkin_ws/src/my_catkin_ws_python3
ubuntu@grace:~/catkin_ws/src/my_catkin_ws_python3$ source ~/.py3venv/bin/activate
bash: /home/ubuntu/.py3venv/bin/activate: No such file or directory
ubuntu@grace:~/catkin_ws/src/my_catkin_ws_python3$ python3 --version
Python 3.6.9
ubuntu@grace:~/catkin_ws/src/my_catkin_ws_python3$ source ~/.catkin_ws_python3/bin/activate
bash: /home/ubuntu/.catkin_ws_python3/bin/activate: No such file or directory
ubuntu@grace:~/catkin_ws/src/my_catkin_ws_python3$
Is because both .catkin_ws_python3 and .py3venv were created for this course. These are
.py3venv: This si a virtual environment for using python 3 in a python 2 system.
.catkin_ws_python3: Is a catkin_ws compiled after sourcing in the .py3venv.
So to make this work in your local system you first have to install venv elements to be able to create one of your own. Then create a catkin_ws and after sourcing the venv, do catkin_make.
Something like this you should do, depending on your system. Hope you can get it ;), but we cant give full support for each person that want to install things in their own systems.