We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e186a4e commit f0f09fcCopy full SHA for f0f09fc
installers/oi-linux-installer.sh
100644
100755
@@ -20,13 +20,14 @@ curl https://pyenv.run | bash
20
# Define pyenv location
21
pyenv_root="$HOME/.pyenv/bin/pyenv"
22
23
+python_version="3.11.7"
24
+
25
# Install specific Python version using pyenv
26
$pyenv_root init
-$pyenv_root install 3.11.7 --skip-existing
-$pyenv_root shell 3.11.7
27
-
28
-pip install open-interpreter
+$pyenv_root install $python_version --skip-existing
+$pyenv_root shell $python_version
29
30
+$pyenv_root exec pip install open-interpreter --break-system-packages
31
# Unset the Python version
32
$pyenv_root shell --unset
33
0 commit comments