cc-python-sdk is the Python Software Development Kit used to develop plugins for Cloud Compute.
You can install cc-python-sdk in two ways: from source or through the pip package manager.
To install cc-python-sdk from source, follow these steps:
- Clone the repository:
git clone https://github.com/USACE/cc-python-sdk.git
- Navigate to the project directory:
cd cc-python-sdk
- Create a virtual environment (optional but recommended):
python3 -m venv venv
source venv/bin/activate
- Install the package dependencies:
pip install -r requirements.txt
- Install the build dependencies
python3 -m pip install --upgrade build
- Build cc-python-sdk from the
pyproject.toml
:
python3 -m build
- Install the generated wheel (replace with the version of the wheel file built):
pip install dist/cc_python_sdk-<version>-py3-none-any.whl
or
pip install dist/*.whl
Now you have successfully installed cc-python-sdk from source.
Download the release from the 'Releases' page of this repository, then install with pip:
pip install <path/to/wheel/*.whl>
To install cc-python-sdk using pip, simply run the following command:
pip install cc-python-sdk
This will download the latest version of cc-python-sdk from the Python Package Index (PyPI) and install it into your Python environment.
Once cc-python-sdk is installed, you can start using its functionality in your Python projects. Here's a simple example:
import cc_sdk
# Use the functions and classes provided by cc_sdk
TODO. See example plugin here