-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds README with installation instructions
- Loading branch information
Winterflower
committed
Dec 17, 2019
1 parent
3462c21
commit 1bf5b15
Showing
1 changed file
with
29 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
## Kibana Sample Flights Data Classification Example | ||
|
||
Set up a local instance of Jupyter using the following instructions | ||
|
||
1. Set up a virtual environment called `env` | ||
|
||
``` | ||
python3 -m venv env | ||
``` | ||
|
||
2. Activate it | ||
|
||
``` | ||
source env/bin/activate | ||
``` | ||
|
||
3. Install the required dependencies for your chosen Jupyter notebook | ||
|
||
``` | ||
pip install -r some-requirements-file-name.txt | ||
``` | ||
|
||
4. Launch Jupyter | ||
|
||
``` | ||
jupyter notebook | ||
``` | ||
|
||
|