We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To install Buddi, you can follow these steps in your terminal:
Install pyenv using Homebrew: brew install pyenv
Install Python 3.10 using pyenv: pyenv install 3.10 && pyenv local 3.10 && \
Set Python 3.10 as the local version for the current directory.
Remove any existing virtual environment (.venv directory). Create a new virtual environment named .venv using the installed Python version.
m -rf .venv && virtualenv -p $( pyenv which python ) .venv
Activate the virtual environment: .venv/bin/activate && \
Install Buddi from the specified GitHub repository using pip: pip install git+https://github.com/greenelab/buddi.git
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To install Buddi, you can follow these steps in your terminal:
Install pyenv using Homebrew: brew install pyenv
Install Python 3.10 using pyenv: pyenv install 3.10 && pyenv local 3.10 && \
Set Python 3.10 as the local version for the current directory.
Remove any existing virtual environment (.venv directory).
Create a new virtual environment named .venv using the installed Python version.
m -rf .venv && virtualenv -p $( pyenv which python ) .venv
Activate the virtual environment: .venv/bin/activate && \
Install Buddi from the specified GitHub repository using pip: pip install git+https://github.com/greenelab/buddi.git
The text was updated successfully, but these errors were encountered: