2

I would like to avoid backports, they always seem to mess up my packages.

So I was thinking tools like conda / virtualenv / maybe even docker can help. What's the most simple / cleanest way to work with python 3.7 on my system?

benji
  • 2,180
  • 5
  • 30
  • 54

1 Answers1

0
sudo apt-get install python3.7

Docker is fine and so is virtualenv/virtualenvwrapper.

Pass in the -p to the binary if you're working with a virtual environment.

Ryan Schaefer
  • 2,952
  • 1
  • 23
  • 43
Michael Benin
  • 4,149
  • 2
  • 22
  • 15