Installation
Get Algoritmos de Encriptamiento running on your local machine in just a few steps.Prerequisites
Before you begin, ensure you have the following installed:- Python 3.6 or higher (Python 3.13 recommended)
- Git for cloning the repository
- pip (usually comes with Python)
You can check your Python version by running
python --version in your terminal.Installation steps
Install pipenv
Install pipenv to manage the project dependencies:Pipenv creates isolated virtual environments and manages package versions automatically.
Install dependencies
Use pipenv to install the required packages:This command reads the
Pipfile and installs Flask and other dependencies in a virtual environment.Project structure
Once installed, you’ll find the following structure:Running the application
You can run the application in two ways:Web interface
Command-line interface
The web interface runs on Flask’s development server. It’s perfect for learning but not suitable for production deployment.
Troubleshooting
Python version mismatch
If you encounter a Python version error, you can modify thePipfile to match your installed Python version:
Pipfile
pipenv install again.
Port already in use
If port 5000 is already in use, you can modifyapp.py to use a different port:
app.py