Skip to content

Commit 8e90c41

Browse files
committed
update readme and requirements
1 parent acd9f37 commit 8e90c41

File tree

2 files changed

+20
-21
lines changed

2 files changed

+20
-21
lines changed

README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,12 @@ This is a
2929

3030
## Installation
3131

32-
### Option 1
33-
Run pyxtermjs with no commitment in an ephemeral environment with [pipx](https://github.com/pipxproject/pip-app)
34-
```
35-
pipx run pyxtermjs # install and run in ephemeral environment
36-
```
32+
Clone this repository, enter the `pyxtermjs` directory, then run:
3733

38-
### Option 2
39-
Clone this repository, enter the `pyxtermjs` directory, create a virtual environment (`python3 -m venv venv`), activate it (`source venv/bin/activate`) then run
4034
```
41-
pip install -r requirements.txt
42-
python -m pyxtermjs
35+
python3 -m venv venv # must be python3.6+
36+
venv/bin/pip install -r requirements.txt
37+
venv/bin/python -m pyxtermjs
4338
```
4439

4540
## Documentation

requirements.txt

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
Click==7.0
2-
Flask==1.0.2
3-
Flask-SocketIO==3.3.1
4-
itsdangerous==1.1.0
5-
Jinja2==2.10
6-
MarkupSafe==1.1.1
7-
pkg-resources==0.0.0
8-
python-engineio==3.4.3
9-
python-socketio==3.1.2
10-
pyxtermjs==0.4.0.0
11-
six==1.12.0
12-
Werkzeug==0.14.1
1+
#
2+
# This file is autogenerated by pip-compile
3+
# To update, run:
4+
#
5+
# pip-compile
6+
#
7+
click==7.0 # via flask
8+
flask-socketio==3.3.1
9+
flask==1.0.2 # via flask-socketio
10+
itsdangerous==1.1.0 # via flask
11+
jinja2==2.10 # via flask
12+
markupsafe==1.1.1 # via jinja2
13+
python-engineio==3.4.3 # via python-socketio
14+
python-socketio==3.1.2 # via flask-socketio
15+
six==1.12.0 # via python-engineio, python-socketio
16+
werkzeug==0.14.1 # via flask

0 commit comments

Comments
 (0)