-
Notifications
You must be signed in to change notification settings - Fork 0
Description
For the school we are going to get a lot of people with access to only one of those systems. We need to make sure that it works and when it doesn't, have a quick workaround ready.
The docker image is fine but docker is not always available.
I know Ubuntu 20.04 is old, but turns out a lot of people is still using it.
(I'm trying my best to avoid conda!)
Also, I didn't put it in the title of the issue but I want to try to create a bottle for homebrew.
For Ubuntu 20.04
The easiest solution (the one that works out of the box) is to use the deadsnakes ppa and install from there python 3.10
add-apt-repository ppa:deadsnakes/ppa
apt update
apt install python3.10-full python3.10-dev
poetry env use python3.10Note: it might also work with python3.10-minimal but I didn't try.
Installing python by hand also works but then you have to make sure that everything is in the right place so no longer out of the box (almost though, only lz4 was a problem). I'll try to put it nicely as a script than can be copied and pasted since it would also work in other systems.