Installation
Prerequisites
Before installing Regexable, ensure you have Python 3.6 or higher installed on your system. You can check your Python version by running:
python --version
Installing Regexable
You can install Regexable using pip, the Python package manager. Run the following command in your terminal:
pip install regexable
This command will download and install Regexable and its dependencies.
Verifying the Installation
To verify that Regexable was installed correctly, you can try importing it in a Python shell:
>>> from regexable import Regexable
>>> regex = Regexable()
>>> print(regex)
<regexable.core.Regexable object at 0x...>
If no errors are thrown, then you have successfully installed Regexable.
Upgrading Regexable
To upgrade to the latest version of Regexable, use the following pip command:
pip install --upgrade regexable
Uninstalling Regexable
If you need to uninstall Regexable, you can do so with pip:
pip uninstall regexable