Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PYTHONPATH fix in tutorial #239

Merged
merged 1 commit into from
Apr 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tutorials/in_depth/tutorial01_installing_lava.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"Open a python terminal and run based on the OS you are on:\n",
"\n",
"#### 2.1.1 [Linux/MacOS]\n",
"- cd $HOME\n",
"- cd $HOME\n",
"- pip install -U pip\n",
"- pip install \"poetry>=1.1.13\"\n",
"- git clone [email protected]:lava-nc/lava.git\n",
Expand All @@ -58,7 +58,7 @@
"- cd lava\n",
"- python3 -m venv .venv\n",
"- .venv\\Scripts\\activate\n",
"- pip install -U pip\n",
"- pip install -U pip\n",
"- pip install \"poetry>=1.1.13\"\n",
"- poetry config virtualenvs.in-project true\n",
"- poetry install\n",
Expand Down Expand Up @@ -162,14 +162,14 @@
"Lava helps you to get started by providing a range of [Tutorials](https://github.com/lava-nc/lava/tree/main/tutorials/ \"Lava Tutorials\"). \n",
"\n",
"#### 6.1 [Linux/MacOS]\n",
"- export PYTHONPATH=~/lava\n",
"- export PYTHONPATH=~/lava/src\n",
"- pip install jupyter\n",
"- jupyter notebook\n",
"- Open browser based on URL shown in the jupyter log\n",
"- Navigate in the notebook to *lava ~> tutorials*\n",
"\n",
"#### 6.2 [Windows]\n",
"- set PYTHONPATH=~/lava\n",
"- set PYTHONPATH=~/lava/src\n",
"- pip install jupyter\n",
"- jupyter notebook\n",
"- Open browser based on URL shown in the jupyter log\n",
Expand Down