-
Notifications
You must be signed in to change notification settings - Fork 184
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
error installing in ubuntu 22 #72
Comments
@johnfelipe can you try it again with the setup.sh script code below? #!/usr/bin/env bash
# Function to check if a conda environment exists
function conda_env_exists() {
local env_name="$1"
conda activate "$env_name" &> /dev/null
local activated=$?
conda deactivate &> /dev/null
return $activated
}
# Install tree command if it's not installed
if ! command -v tree &> /dev/null
then
if [ "$(uname)" == "Darwin" ]; then
# macOS
brew install tree
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
# Linux
if [ -x "$(command -v apt-get)" ]; then
# Debian/Ubuntu
sudo apt-get update && sudo apt-get install tree
elif [ -x "$(command -v yum)" ]; then
# CentOS
sudo yum install tree
elif [ -x "$(command -v pacman)" ]; then
# Arch Linux
sudo pacman -S tree
elif [ -x "$(command -v zypper)" ]; then
# OpenSUSE
sudo zypper install tree
else
echo "Your Linux distribution's package manager is not supported. Please install 'tree' manually."
exit 1
fi
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
# Windows
choco install tree
fi
fi
# Welcome message
echo "Welcome to the README-AI environment setup script!"
# Check if git is installed
if ! command -v git &> /dev/null; then
echo "Git is not installed. Please install Git and rerun the script."
exit 1
fi
: '
# Clone the repository
echo "Cloning the README-AI repository..."
git clone https://github.com/eli64s/README-AI.git
cd README-AI
'
# Check if conda is installed
if ! command -v conda &> /dev/null; then
echo "Conda is not installed. Please install Anaconda or Miniconda and rerun the script."
exit 1
fi
# Check for Python installation and required version (3.8+)
echo "Checking for Python 3.8 or higher..."
python_version=$(python3 -c 'import sys; print("{}.{}".format(sys.version_info[0], sys.version_info[1]))' 2>/dev/null)
if [ $? -ne 0 ]; then
echo "Python 3 is not installed. Please install Python 3.8 or higher and rerun the script."
exit 1
fi
IFS='.' read -ra version_parts <<< "$python_version"
major=${version_parts[0]}
minor=${version_parts[1]}
if [ "$major" -lt 3 ] || ([ "$major" -eq 3 ] && [ "$minor" -lt 7 ]); then
echo "Please upgrade to Python 3.8 or higher and rerun the script."
exit 1
fi
echo "Python version is compatible."
# Check if 'readmeai' environment already exists
if conda_env_exists "readmeai"; then
echo "The 'readmeai' environment already exists. Skipping environment creation."
else
# Create a new conda environment named 'readmeai'
echo "Creating a new conda environment named 'readmeai' with Python 3.8..."
conda env create -f setup/environment.yaml || {
echo "Error creating the 'readmeai' environment. Aborting."
exit 1
}
fi
# Activate the conda environment
echo "Activating the 'readmeai' environment..."
eval "$(conda shell.bash hook)"
conda activate readmeai
# Add the Python path from the active conda environment to PATH
echo "Adding Python path to the PATH environment variable..."
export PATH="$(conda info --base)/envs/readmeai/bin:$PATH"
# Install the required packages using pip
echo "Installing required packages from 'requirements.txt'..."
pip install -r requirements.txt || {
echo "Error installing packages from 'requirements.txt'. Aborting."
conda deactivate
exit 1
}
# Deactivate the conda environment
conda deactivate
echo "Setup complete. Use 'conda activate readmeai' to activate the environment." Let me know if you get the same error with this code. I'll look at this further when I get a chance. Thank you! |
Same issue here in ubuntu 22 and miniconda.
Wastes all the available RAM just before crashing. What are you doing here, some AI training? I have 4GB of RAM. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how can solve it?
The text was updated successfully, but these errors were encountered: