Using a default terminal, after sourcing a python virtual environment script
cd ~
mkdir folder
cd folder
python -m venv venv
source ven/bin/activate
This action modifies the bash prompt to something like this
(venv) ~/folder
Using this bash script drops that part. Is it possible to add support for this?
Using a default terminal, after sourcing a python virtual environment script
This action modifies the bash prompt to something like this
(venv) ~/folderUsing this bash script drops that part. Is it possible to add support for this?