Update README.md

Clarify Python venv install, remove first time script instructions until it can be made fail-safe.
This commit is contained in:
David Boreham 2022-11-14 10:38:50 -07:00 committed by GitHub
parent 9afe1a99fa
commit c74609f9d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,17 @@ Ensure that the following are already installed:
$ python3 --version
Python 3.8.10
```
1. Python venv package
This may or may not be already installed depending on the host OS and version. Check by running:
```
$ python3 -m venv
usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear] [--upgrade] [--without-pip] [--prompt PROMPT] ENV_DIR [ENV_DIR ...]
venv: error: the following arguments are required: ENV_DIR
```
If the venv package is missing you should see a message indicating how to install it, for example with:
```
$ apt install python3.8-venv
```
2. Docker (Install a current version from dockerco, don't use the version from any Linux distro)
```
$ docker --version
@ -35,14 +46,6 @@ Ensure that the following are already installed:
```
$ git clone (https://github.com/cerc-io/stack-orchestrator.git
```
2. Optional first time setup for empty dev root and fresh SO checkout:
```
./first_time_setup.sh
# e.g. /home/USER/workspace1/
# only contains the stack-orchestrator repo cloned in step 1.
# this will naively attempt to setup and activate the venv, shiv, generate a LOCAL standalone laconic-so
# and then setup-repositories in workspace1/
```
4. Enter the project directory:
```
$ cd stack-orchestrator