mirror of
https://github.com/lowobservable/oec.git
synced 2026-03-04 02:34:36 +00:00
Update README.md
This commit is contained in:
17
README.md
17
README.md
@@ -4,14 +4,14 @@ IBM 3270 terminal controller - a replacement for the IBM 3174.
|
||||
|
||||

|
||||
|
||||
## Features
|
||||
|
||||
This project aims to create an open replacement for the IBM 3174 Establishment
|
||||
Controller, specifically for users looking to connect an IBM 3270 type terminal
|
||||
to the Hercules emulator. For background on this project, IBM 3270 type
|
||||
terminals and controllers, see
|
||||
_[Building an IBM 3270 terminal controller](https://ajk.me/building-an-ibm-3270-terminal-controller)_.
|
||||
|
||||
## Features
|
||||
|
||||
It is a work in progress and is far from providing all the features you might
|
||||
expect from a later model 3174, but it does provide basic TN3270 and VT100
|
||||
emulation.
|
||||
@@ -39,11 +39,18 @@ You may have to modify the key mapping to support your specific terminal configu
|
||||
|
||||
You will need to build an [interface](https://github.com/lowobservable/coax) and connect it to your computer.
|
||||
|
||||
Then configure a Python virtual environment and install dependencies:
|
||||
You will need Python 3.8 installed.
|
||||
|
||||
I'd recommend using a Python [virtual environment](https://docs.python.org/3/library/venv.html) to isolate oec from your system-wide packages:
|
||||
|
||||
```
|
||||
python3.8 -m venv VIRTUALENV
|
||||
source VIRTUALENV/bin/activate
|
||||
```
|
||||
|
||||
Install dependencies using `pip`:
|
||||
|
||||
```
|
||||
python -m venv VIRTUALENV
|
||||
. VIRTUALENV/bin/activate
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user