Skip to content

Commit

Permalink
add setup instruction to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
truonghm committed Sep 22, 2023
1 parent 6234d47 commit f329fde
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Malicious JavaScript Detection

## Setting up

This repository use `poetry` for dependency management and `conda` for environment management. To install `poetry`:

```bash
curl -sSL https://raw.githubusercontent.com/python-poetry/install.python-poetry.org/main/install-poetry.py | python3
```

Create a conda env (fresh) from `environment.yml`:

```bash
make env
```

Create a conda env from the lock file:

```bash
conda create --name m1 --file conda-linux-64.lock
```

## Running the demo

```bash
Expand Down

0 comments on commit f329fde

Please sign in to comment.