- 🟦 Machinerie quantique
- 🟩 Grover [1/2]
- 🟧 Grover [2/2]
Important
Les challenges ont été conçus sur Python 3.13
-
Installation de l'environment
Avec miniconda (recommandé)
Install miniconda:mkdir -p ~/miniconda3 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 rm -rf ~/miniconda3/miniconda.sh ~/miniconda3/bin/conda init bash
source ~/.bashrc
Création de l'environnement avec Python 3.13 :
conda create -n profondeurs python=3.13 -y conda activate profondeurs
Avec python venv
python -m venv .venv source .venv/bin/activate -
Installation des dépendances
pip install poetry poetry install --with notebook