You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run sudo bash setup-aiverify-dev.sh, the response is the following error message: "aiverify requires Python 3.11.x, please install Python 3.11.x." despite Python 3.11.9 being already installed
- Operating System and Version: Ubuntu 24.04
- AI Verify Version: 0.10.3
- Any other relevant information (e.g. version of related package dependencies installed):
Did you build using source code or from docker file? If from source code, please provide the below information:
- Python Version: 3.11.9
- Node Version: 18.19.1
- Redis Version: n/a
- Mongo Version: n/a
- Screen Resolution: 2256*1504
Screenshots/ Code snippets
No response
Additional Context
No response
Possible Solution (Optional)
No response
The text was updated successfully, but these errors were encountered:
If python 3.11.x has been installed and from the command line and "python3 --version" returns 3.11.x that should work.
For the time being, in the installation script for aiverify-dev, "setup-aiverify-dev.sh", either comment out or delete the following lines:
'''
#Check if Python3 is installed
#required_py_ver="Python 3.11"
#if ! which python3 &>/dev/null; then
#echo "Python3 is not installed. Please install Python3, aiverify requires $required_py_ver.x."
#exit 1
#fi
''''
It would proceed to install. I've just done that in a VM running ubuntu24.04 and installed nodejs, pyenv to manage various python versions, set the python to 3.11.9 ("pyenv global 3.11.9) and then proceeded to successfully install aiverify.
Is there an existing issue for this?
Description
When I run sudo bash setup-aiverify-dev.sh, the response is the following error message: "aiverify requires Python 3.11.x, please install Python 3.11.x." despite Python 3.11.9 being already installed
Current Behavior
aiverify fails to install
Expected Behavior
aiverify installs correctly
Steps To Reproduce
Environment
Screenshots/ Code snippets
No response
Additional Context
No response
Possible Solution (Optional)
No response
The text was updated successfully, but these errors were encountered: