Diff of /README.md [000000] .. [b798eb]

Switch to unified view

a b/README.md
1
# Quantum-enabled multi-omics analysis
2
3
![QMLOmics](images/QMLomics_tutorial.png)
4
5
## Schedule
6
7
![Schedule](images/Schedule_tutorial.png)
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