https://github.com/dataprofessor/drugdiscovery
https://github.com/dataprofessor/drugdiscovery
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dataprofessor/drugdiscovery
- Owner: dataprofessor
- Created: 2021-05-05T13:29:07.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-29T14:53:52.000Z (over 4 years ago)
- Last Synced: 2025-04-05T07:41:33.269Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 19
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# drugdiscovery
[How to build a web app for Drug Discovery in Python | Streamlit #26](https://youtu.be/0rqIwSeUImo)
# Reproducing this web app
To recreate this web app on your own computer, do the following.
### Create conda environment
Firstly, we will create a conda environment called *drugdiscovery*
```
conda create -n drugdiscovery python=3.7.9
```
Secondly, we will login to the *drugdiscovery* environement
```
conda activate drugdiscovery
```
### Install prerequisite libraries
Download requirements.txt file
```
wget https://raw.githubusercontent.com/dataprofessor/drugdiscovery/main/requirements.txt
```
Pip install libraries
```
pip install -r requirements.txt
```
### Download and unzip contents from GitHub repo
Download and unzip contents from https://github.com/dataprofessor/drugdiscovery/archive/main.zip
### Launch the app
```
streamlit run app.py
```
