-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'learning-engine-bit-acc' of https://github.com/lava-nc/…
…lava into learning-engine-bit-acc
- Loading branch information
Showing
10 changed files
with
654 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
[submodule "docs"] | ||
path = docs | ||
url = https://github.com/lava-nc/lava-docs.git | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ cd $HOME | |
curl -sSL https://install.python-poetry.org | python3 - | ||
git clone [email protected]:lava-nc/lava.git | ||
cd lava | ||
git checkout v0.8.0 | ||
git checkout v0.9.0 | ||
./utils/githook/install-hook.sh | ||
poetry config virtualenvs.in-project true | ||
poetry install | ||
|
@@ -90,7 +90,7 @@ pytest | |
cd $HOME | ||
git clone [email protected]:lava-nc/lava.git | ||
cd lava | ||
git checkout v0.8.0 | ||
git checkout v0.9.0 | ||
python3 -m venv .venv | ||
.venv\Scripts\activate | ||
pip install -U pip | ||
|
@@ -154,12 +154,28 @@ conda install -n lava -c intel numpy scipy | |
conda install -n lava -c conda-forge lava --freeze-installed | ||
``` | ||
|
||
## Alternative: Installing Lava from pypi | ||
|
||
If you would like to install Lava as a user you can install via pypi binaries. | ||
Installing in this way does not give you access to run tests. | ||
|
||
Open a Python terminal and run: | ||
|
||
### Windows/MacOS/Linux | ||
|
||
```bash | ||
python -m venv .venv | ||
source .venv/bin/activate ## Or Windows: .venv\Scripts\activate | ||
pip install -U pip | ||
pip install lava-nc | ||
``` | ||
|
||
## Alternative: Installing Lava from binaries | ||
|
||
If you only need to install Lava as a user in your python environment, we will | ||
publish Lava releases via | ||
You can also install Lava as a user with published Lava releases via | ||
[GitHub Releases](https://github.com/lava-nc/lava/releases). Please download | ||
the package and install it. | ||
the package and install it with the following commands. Installing in this way does not | ||
give you access to run tests. | ||
|
||
Open a Python terminal and run: | ||
|
||
|
@@ -169,7 +185,8 @@ Open a Python terminal and run: | |
python -m venv .venv | ||
source .venv/bin/activate ## Or Windows: .venv\Scripts\activate | ||
pip install -U pip | ||
pip install lava-nc-0.6.0.tar.gz | ||
# Substitute lava version needed for lava-nc-<version here>.tar.gz below | ||
pip install lava-nc-0.9.0.tar.gz | ||
``` | ||
|
||
## Linting, testing, documentation and packaging | ||
|
Submodule docs
deleted from
9492b5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.