pull/63/head v0.3.2
Mark Jessop 2022-02-05 18:57:06 +10:30
rodzic 4f3947e6cb
commit e3f948d6d6
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -79,14 +79,16 @@ If you want to install directly from this repository, you can run:
$ pip install -r requirements.txt $ pip install -r requirements.txt
$ pip install -e . $ pip install -e .
``` ```
(Note - this has some issues relating to setuptools currently... use pip)
### Updating ### Updating
If you have installed horusdemodlib via pypi, then you can simply run: If you have installed horusdemodlib via pypi, then you can run (from within your venv, if you are using one):
``` ```
$ pip install -U horusdemodlib $ pip install -U horusdemodlib
``` ```
This will also install any new dependencies. This will also install any new dependencies.
If you have installed 'directly', then you will need to run: If you have installed 'directly', then you will need to run:
``` ```
$ git stash $ git stash
@ -94,6 +96,7 @@ $ git pull
$ pip install -r requirements.txt $ pip install -r requirements.txt
$ pip install -e . $ pip install -e .
``` ```
(Note - this has some issues relating to setuptools currently... use pip)
## Further Reading ## Further Reading