Tip: Avoid warning creating the virtual environment

Hi @Mark_Smith ,

I have seen you in the videos creating the virtual environment using this code:

$ python -m venv venv

I think you could avoid the following warning creating the virtual environment using this code instead:

$ python -m venv --upgrade-deps venv

3 Likes

Thanks for sharing @Manuel_Martin

1 Like

I didn’t know this existed - and I consider myself a Python expert!

Thanks so much for this, @Manuel_Martin!

1 Like

I don’t consider myself a Python expert!, just have the lucky to learnt it somewhere, I am glad you find it interested for you.

1 Like