I have some issue about create python venv.
Is there any way to make fresh venv without using Docker.
I already try
pip uninstall -r requirements.txt -y
but result I got back is
Not uninstalling rospy at /opt/ros/noetic/lib/python3/dist-packages, outside environment /home/micls/PECOM/rpi-playground/.venv
Can't uninstall 'rospy'. No files were found to uninstall.
Or using virtualenv --no-site-packages .venv and result I got
virtualenv: error: unrecognized arguments: --no-site-packages
SystemExit: 2
rm -rf .venvand thenpython -m venv .venv?