Skip to content

dagl1/Marcello_dynamics

Repository files navigation

image

Marcello Dynamics Setup Guide

This guide will walk you through the process of setting up the Marcello Dynamics project on your local machine, including installing dependencies and running the project.

Prerequisites

  • Git: Version control system to clone the repository.
  • Python 3.11: Required version of Python for the project.
  • pip: Python package manager to install dependencies.

Steps

1. Install Git

If you don't have Git installed, you can download and install it from the official website:

Follow the instructions for your operating system.

2. Clone the Repository

Once you have Git installed, open your terminal (Command Prompt, PowerShell, or terminal for macOS/Linux) and run the following command to clone the repository:

git clone https://github.com/dagl1/Marcello_dynamics

Navigate into the cloned directory:

3. Install Python 3.11

Ensure that Python 3.11 is installed on your system. You can download the latest version of Python from the official website:

After installing, verify the installation by running: python --version

is should return Python 3.11.x.

4. Create a Virtual Environment

It's a good practice to use a virtual environment to manage project-specific dependencies. To create one, run the following command:

python -m venv venv

Activate the virtual environment:

  • On Windows: .\venv\Scripts\activate Once activated, your terminal prompt should show the virtual environment's name.

5. Install the Project Requirements

With the virtual environment activated, install the required dependencies by running:

pip install -r requirements.txt

This will install all the necessary Python packages listed in the requirements.txt file.

6. Run the Project

Finally, you can run the project by executing the main.py script: python main.py

This should start the program and perform the desired functionality.

Troubleshooting

  • If you encounter issues with package installations, make sure you're using the correct version of Python and that the virtual environment is activated.
  • Ensure that all required packages are properly listed in requirements.txt.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages