Skip to content

Commit

Permalink
Fixed commands in README
Browse files Browse the repository at this point in the history
  • Loading branch information
DiddiZ committed Feb 22, 2024
1 parent 98f90b0 commit aceb98f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ cd mtg-proxies

```bash
# On Linux, use `python3` instead of `python`
python -m pip install .
python -m pip install -e .
```

You can also use a [virtual environment](https://docs.python.org/3/library/venv.html).
Expand All @@ -73,29 +73,29 @@ E.g.:
Or use the `convert.py` tool to convert a plain decklist to Arena format:

```bash
pipenv run python convert.py examples/decklist_text.txt examples/decklist.txt
python convert.py examples/decklist_text.txt examples/decklist.txt
```

4. Create a PDF file.

```bash
pipenv run python print.py examples/decklist.txt decklist.pdf
python print.py examples/decklist.txt decklist.pdf
```

Examples:

- Create separate outputs for front and back faces

```bash
pipenv run python print.py examples/decklist.txt decklist_fronts.pdf --face front
pipenv run python print.py examples/decklist.txt decklist_backs.pdf --face back
python print.py examples/decklist.txt decklist_fronts.pdf --face front
python print.py examples/decklist.txt decklist_backs.pdf --face back
```

## Updating

```bash
git pull --ff-only
pipenv install --deploy
python -m pip install -e .
```

## Help
Expand Down Expand Up @@ -161,7 +161,7 @@ optional arguments:
Example:

```bash
pipenv run python tokens.py examples/token_generators.txt
python tokens.py examples/token_generators.txt
```

### Deck Value Decomposition
Expand Down

0 comments on commit aceb98f

Please sign in to comment.