Ah, and thank you for the heads up on the erase_flash. I will keep that in mind. now that i have this all setup correctly, its time to move on from just accessing a repl and blinking and led that attached to a pin that i defined.

Yes. The venv is just a directory structure hanging off you $HOME. Whatever you do with pip while that venv is active will be persistent. If you need to start over or "think" you never need it again, "rm -rf obsolete-venv" will do the job. The "think" part is what bit me a couple times in the beginning, as I am not very good at measuring twice before cutting once, if you get the drift.dps wrote: ↑Fri Dec 06, 2019 10:59 pmSo while the source of a particular venv is activated, i can move around the system and still use the commands, because when i activated that venv it added the /bin to my path (in addition to other variables). After deactivating the venv, my $PATH will return to normal, and all things that i changed (in regards to python and pip) stay in that venv, for later use?
then I run `source /path/to/venvdir/specificvenv/bin/activate`.python3 -m venv /path/to/venvdir/specificvenv