example_package_wakskevin
is a Python package serving as a practical example following the Python Packaging Tutorial.
To install the package from TestPyPI, use the following command:
pip install -i https://test.pypi.org/simple/ example-package-wakskevin
You can install the package locally after cloning the repository, follow these steps:
- Clone the repository:
git clone [email protected]:wakskevin/example_package_wakskevin.git
- Navigate to the project directory:
cd example_package_wakskevin
- Create a virtual environment:
python3 -m venv .venv
- Activate the virtual environment:
On Windows:
.venv\Scripts\activate
- On macOS/Linux:
source .venv/bin/activate
- Install the requirements:
pip install -r requirements.txt
- Install the package locally:
pip install .
Now, the package will be available in your virtual environment.