Skip to content

DAkemeier/kickstart_ml

Repository files navigation

Set the Environment

macOS type the following commands :

  • For installing the virtual environment you can either use the Makefile and run make setup or install it manually with the following commands:
    make setup
After that active your environment by following commands:
    source .venv/bin/activate

Or ....

  • Install the virtual environment and the required packages by following commands:
    pyenv local 3.11.3
    python -m venv .venv
    source .venv/bin/activate
    pip install --upgrade pip
    pip install -r requirements.txt

WindowsOS type the following commands :

  • Install the virtual environment and the required packages by following commands.

    For PowerShell CLI :

    pyenv local 3.11.3
    python -m venv .venv
    .venv\Scripts\Activate.ps1
    python -m pip install --upgrade pip
    pip install -r requirements.txt
For `Git-bash` CLI :
    pyenv local 3.11.3
    python -m venv .venv
    source .venv/Scripts/activate
    python -m pip install --upgrade pip
    pip install -r requirements.txt
**`Note:`**
If you encounter an error when trying to run `pip install --upgrade pip`, try using the following command:
        python.exe -m pip install --upgrade pip

Update the Environment

If you need additional packages or features beyond the current requirements, please add them to the requirements.txt file. You can automatically update the requirements file using:

    pip freeze > requirements.txt

Get the Data

To get a local copy of the data or create a fresh copy, run the command below in the terminal:

    unzip data.zip

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages