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,331
  • 6
  • 33
  • 62

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
  • 3,047
  • 1
  • 26
  • 46
Michael Benin
  • 4,317
  • 2
  • 23
  • 15