### Install Pyblish Base via pip Source: https://github.com/pyblish/pyblish-base/blob/master/README.md Installs the pyblish-base package from the Python Package Index (PyPI) using the pip package manager. This is the recommended and simplest method for installing the core library. ```bash pip install pyblish-base ``` -------------------------------- ### Install Pyblish Base via Git Clone Source: https://github.com/pyblish/pyblish-base/blob/master/README.md Clones the pyblish-base repository directly from GitHub. This method is useful for development or when installing from source. It includes commands to set the PYTHONPATH environment variable for both Windows and Unix-like operating systems. ```bash git clone https://github.com/pyblish/pyblish-base.git # Windows set PYTHONPATH=%cd%\pyblish-base # Unix export PYTHONPATH=$(pwd)/pyblish-base ``` -------------------------------- ### Upload Pyblish Base to PyPI Source: https://github.com/pyblish/pyblish-base/blob/master/README.md Provides the necessary commands to build source and wheel distribution packages for pyblish-base and upload them to PyPI using the twine utility. This process is typically performed by project maintainers for releasing new versions. ```bash cd pyblish-base python .\setup.py sdist bdist_wheel python -m twine upload .\dist\* ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.