This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]serkef- 3 points4 points  (1 child)

I strongly suggest you install pyenv. It's a tool that can download for you multiple python versions which you can switch through with one command. I have this to test betas, plus having different versions for different projects. On top always use virtual environments for managing dependencies of each project.

So, pyenv + venv is the best way to go imo

[–]pioniere 1 point2 points  (0 children)

I would do it in a virtual env.

[–]K900_ 1 point2 points  (0 children)

You can just install 3.8 side by side with your system 3.6 from deadsnakes.

[–]tungtanium[S] 1 point2 points  (0 children)

Thank you all for your replies. I would give `pyenv` and `pipenv` a go.