Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
basic_users_guide_xces_new [2025/05/16 12:30] – [Getting familiar with the XCES Platform] etorma | basic_users_guide_xces_new [2025/05/19 11:50] (current) – [Installing the freva library] etorma | ||
---|---|---|---|
Line 244: | Line 244: | ||
+ | |||
+ | ==== Creating a jupyter kernel out of your environment ==== | ||
+ | |||
+ | For that, you will need to previously install the '' | ||
+ | |||
+ | <code python> | ||
+ | conda create --name myenv python=3.8 ipykernel # with conda | ||
+ | python -m pip install ipykernel # with pip | ||
+ | </ | ||
+ | |||
+ | And then, given you are using the python binary of your environment: | ||
+ | |||
+ | <code python> | ||
+ | python -m ipykernel install --user --name=$(KERNEL_NAME) --display-name $(KERNEL_NAME) | ||
+ | </ | ||
==== Installing the freva library ==== | ==== Installing the freva library ==== | ||
Line 263: | Line 278: | ||
| | ||
</ | </ | ||
- | |||