|
a |
|
b/README.md |
|
|
1 |
# Quantum-enabled multi-omics analysis |
|
|
2 |
|
|
|
3 |
 |
|
|
4 |
|
|
|
5 |
## Schedule |
|
|
6 |
|
|
|
7 |
 |
|
|
8 |
|
|
|
9 |
### Prerequisites |
|
|
10 |
To start with the tutorial and use the notebooks you will need to create an environment |
|
|
11 |
|
|
|
12 |
1. Create the environment from the `req.txt` file: |
|
|
13 |
``` |
|
|
14 |
conda create -n "QML" |
|
|
15 |
pip install -r req.txt |
|
|
16 |
``` |
|
|
17 |
* Note: if you receive the error `bash: conda: command not found...`, you need to install Anaconda to your development environment (see "Additional resources" below) |
|
|
18 |
|
|
|
19 |
2. Activate the new environment: |
|
|
20 |
``` |
|
|
21 |
conda activate QML |
|
|
22 |
``` |
|
|
23 |
3. Verify that the new environment was installed correctly: |
|
|
24 |
``` |
|
|
25 |
conda env list |
|
|
26 |
``` |
|
|
27 |
|