Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

explicitly setting python version to 3.12 #445

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#!/bin/bash

python3 -m venv .venv
# Check if Python 3.12 is installed
if command -v python3.12 &>/dev/null; then
echo "Python 3.12 is installed, proceeding..."
else
echo "This repo currently only works with Python 3.12, which is not installed on your machine. Please install Python 3.12 and try again."
exit 1
fi

python3.12 -m venv .venv
source .venv/bin/activate
pip install -e .