Skip to content

Commit c9f5017

Browse files
authored
Merge pull request nbedos#112 from jaraco/feature/runpy
Enable invocation via runpy
2 parents d58600a + c385744 commit c9f5017

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@ line sessions as standalone SVG animations.
1616
* Rendering of recordings in asciicast format made with asciinema
1717

1818
## Installation
19-
termtosvg is compatible with Linux, macOS and BSD OSes, requires Python >= 3.5 and can be installed using pip:
20-
```
21-
pip3 install --user termtosvg
19+
termtosvg is compatible with Linux, macOS and BSD OSes, requires Python >= 3.5 and can be installed as follows using pip:
20+
```shell
21+
# Create virtualenv named '.venv'
22+
python3 -m venv .venv
23+
# Activate virtualenv
24+
source .venv/bin/activate
25+
pip3 install termtosvg
2226
```
27+
Then run termtosvg by calling either `termtosvg` or `python3 -m termtosvg`.
2328

2429
Various independently maintained, OS specific packages have been made available by the community:
2530

File renamed without changes.

0 commit comments

Comments
 (0)