Getting Started¶
Setup¶
Begin by creating a new Python environment or activating an existing one for working with the piQture library. You set up a Python virtual environment venv or a Conda environment and use pip or conda to install the piQture package.
Here’s how you can create a conda environment and manage a Python environment:
Installation¶
Once the Python environment is activated, the required piQture package can be installed using pip. You can install the latest version directly from PyPI.
To create a development environment, and install piQture from source, you can refer to section Install from Source.
Installation from Source¶
To set up a development environment and install piQture from source, follow these steps:
Start by cloning the piQture repository from GitHub.
Activate the Python environment and navigate to the piQture repository directory. Then, inside the Python environment, install the required dependencies from the requirements.txt configuration file.
Install piQture in editable mode to make changes to the source code.
Your development environment is set up, and piQture is installed from source. You can now start making changes to the code, running tests, and contributing to the project as a developer.