Skip to content

abchugh/interview-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

interview-py

Developer Setup

Follow the steps below to set up your development environment:

  1. Create a virtual environment

    Use Python's built-in venv module to create a virtual environment. This isolates your project and its dependencies from other projects.

    python3 -m venv env
  2. Activate the virtual environment

    On Windows, run:

    .\env\Scripts\activate

    On Unix or MacOS, run:

    source env/bin/activate
  3. Install the dependencies

    Use pip, a package manager for Python, to install the project's dependencies. These are listed in the requirements.txt file.

    pip install -r requirements.txt
  4. Run the tasks.py file

    You can now run the tasks.py file with Python:

    python tasks.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages