Skip to content

Commit 8769214

Browse files
committed
removed python kernel installation instructions
1 parent 52691e0 commit 8769214

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ For installations on other platforms, please visit [Mbed-CLI's installation page
5454
The latest stable uTensor-SDK can be installed with `pip`. It also include a nice command-line interface.
5555
```bash
5656
$ pip install utensor-cgen jupyterlab
57-
# link the current Python runtime with Jupyter, calling it `ut`
58-
$ pip install ipykernel
59-
$ ipython kernel install --user --name=ut
6057
```
6158

6259
### Installation with `pipenv` (Alternative)
@@ -78,7 +75,7 @@ You will need Jupyter-notebook and utensor-cli to be installed under the same Py
7875
```bash
7976
$ jupyter notebook mnist_conv.ipynb
8077
```
81-
In the Jupyter notebook, set the `ut` kernel by choosing `Kernel` > `Change Kernel` > `ut`. Then, run through all the cells, the generated code and parameters are placed in the `models` and `constant` folders:
78+
In the Jupyter notebook, run through all the cells, the generated code and parameters are placed in the `models` and `constant` folders:
8279

8380
![alt text](docs/img/jupyter_run.png "Running Jupyter Notebook")
8481

docs/getting-started.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,6 @@ Ensure you are performing the installation in the virtual environment:
8282
```bash
8383
$ ut
8484
(ut) $ pip install utensor_cgen jupyterlab
85-
# link the current virtual environment with Jupyter
86-
(ut) $ pip install ipykernel
87-
(ut) $ ipython kernel install --user --name=ut
8885
```
8986
### Mbed-CLI Installation
9087
Installing the dependencies for [Mbed-CLI](https://os.mbed.com/docs/mbed-os/v6.0/quick-start/build-with-mbed-cli.html) with Brew. You may skip them if they are already installed on your system (git, mercurial, and Arm cross-compiler).
@@ -133,11 +130,9 @@ Here, we will only discuss the code specific to the model architecture and uTens
133130

134131
The Jupyter-notebook is launched from the project root:
135132
```bash
133+
# Please make sure the virtual environment is active
136134
(ut) $ jupyter-notebook mnist_conv.ipynb &
137135
```
138-
Once the notebook is launched, set the kernel by choosing `Kernel` > `Change Kernel` > `ut`:
139-
140-
![alt text](img/jupyter_kernel.png "Setting Jupyter Kernel")
141136

142137
### Defining the Model
143138
We defined a convulutional neural network with less than 5kB (after quantization) of parameters:

0 commit comments

Comments
 (0)