-
Notifications
You must be signed in to change notification settings - Fork 0
Bienvenidođź‘‹
Tomás Andrés edited this page Dec 7, 2023
·
1 revision
Create a Virtual Environment (optional but recommended): python -m venv venv This creates a virtual environment in the venv directory. You can activate it using:
On Windows: .\venv\Scripts\activate
On macOS/Linux: source vEnv/bin/activate
Install dependencies: pip install -r requirements.txt This installs the necessary dependencies for your project, which are located in the requirements.txt file.
Run the Project:
python aws.py Where aws.py is the main script of your project.
