Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 564 Bytes

File metadata and controls

17 lines (14 loc) · 564 Bytes

Shors-Factorization-Algorithm

Implementing and Experimenting Shor's Factorization Algorithm

Installation

  1. Clone the repository:

    git clone git@github.com:t-sorger/Shors-Factorization-Algorithm.git
  2. Recreate the virtual environment by running the following command in the project directory:

    python3 -m venv shor  
    source shor/bin/activate  # or venv\Scripts\activate on Windows
    pip install -r requirements.txt

    This will install all the dependencies specified in the requirements.txt file.