init
This commit is contained in:
commit
4cbe50253a
36 changed files with 4073 additions and 0 deletions
34
README.md
Normal file
34
README.md
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
|
||||
|
||||
## Installation
|
||||
|
||||
You must either provide a `pipenv` command system-wide, or bootstrap the build
|
||||
environment manually.
|
||||
|
||||
### Bootstrap Development Environment
|
||||
|
||||
### via Pipenv
|
||||
|
||||
```sh
|
||||
$> python3 -m pipenv install -d
|
||||
```
|
||||
|
||||
### via pip
|
||||
|
||||
```sh
|
||||
$> python3 -m pip install -r requirements-dev.txt
|
||||
```
|
||||
|
||||
### via venv
|
||||
|
||||
```sh
|
||||
$> python3 -m venv .venv
|
||||
```
|
||||
|
||||
```sh
|
||||
$> .venv/bin/python3 -m pip install -r requirements-dev.txt
|
||||
```
|
||||
|
||||
```sh
|
||||
$> python3 -m pipenv run sh ./configure
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue