gensphere

Installation

Welcome to the GenSphere documentation! This section will guide you through the installation process of GenSphere and its necessary dependencies.

Prerequisites

Before installing GenSphere, ensure that your system meets the following prerequisites:

1. Python

2. API Keys

GenSphere integrates with various external services that require API keys. Ensure you have the following:

Installation Steps

Follow these steps to install GenSphere and its dependencies:

It’s recommended to create a virtual environment to manage your project’s dependencies. Open a terminal command window and type:

# Create a virtual environment named 'venv'
python3 -m venv venv

# Activate the virtual environment
# On Windows
venv\Scripts\activate

# On macOS and Linux
source venv/bin/activate

2. Upgrade pip

Ensure that you have the latest version of pip.

pip install --upgrade pip

3. Install GenSphere

Install GenSphere using pip.

pip install gensphere

Note: If you encounter permission issues, you may need to use pip with --user or consider using a virtual environment as shown above.

4. Verify the Installation

To verify that GenSphere has been installed correctly, you can perform a simple test by importing GenSphere in Python.

python -c "import gensphere; print('GenSphere installed successfully!')"

If the installation was successful, you should see the following output:

GenSphere installed successfully!

Additional Dependencies

Depending on your project’s requirements, you might need to install additional dependencies.

Troubleshooting

If you encounter any issues during installation, consider the following steps:

  1. Check Python Version: Ensure you’re using Python 3.10 or higher.
  2. Upgrade pip: Make sure pip is up to date.
  3. Virtual Environment: Use a virtual environment to avoid dependency conflicts.
  4. Contact Support: If you’re still having trouble,join our Discord server.

Proceed to the Quickstart Guide to begin creating and running your first GenSphere workflow!