Skip to content
Snippets Groups Projects

Try 3

Merged Natasha Pavlovikj requested to merge try_3 into master
1 file
+ 7
7
Compare changes
  • Side-by-side
  • Inline
@@ -271,16 +271,16 @@ Jupyter Notebook. To do so, follow the steps below, replacing
@@ -271,16 +271,16 @@ Jupyter Notebook. To do so, follow the steps below, replacing
{{< highlight bash >}}
{{< highlight bash >}}
# Install ipykernel
# Install ipykernel
conda install ipykernel
conda install ipykernel
# Install the kernel specification
# Install the kernel specification
python -m ipykernel install --user --name "$CONDA_DEFAULT_ENV" --display-name "Python ($CONDA_DEFAULT_ENV)" --env PATH $PATH
python -m ipykernel install --user --name "$CONDA_DEFAULT_ENV" --display-name "Python ($CONDA_DEFAULT_ENV)" --env PATH $PATH
{{< /highlight >}}
{{< /highlight >}}
{{% notice note %}}
{{% notice note %}}
If needed, other variables can be set via additional `--env` arguments, e.g.,
If needed, other variables can be set via additional `--env` arguments, e.g.,
`python -m ipykernel install --user --name "$CONDA_DEFAULT_ENV" --display-name "Python ($CONDA_DEFAULT_ENV)" --env PATH $PATH --env VAR value`,
`python -m ipykernel install --user --name "$CONDA_DEFAULT_ENV" --display-name "Python ($CONDA_DEFAULT_ENV)" --env PATH $PATH --env VAR value`,
where `VAR` and `value` are the name and the value of the variable respectively.
where `VAR` and `value` are the name and the value of the variable respectively.
{{% /notice %}}
{{% /notice %}}
2. For an **R** conda environment, install the jupyter\_client and
2. For an **R** conda environment, install the jupyter\_client and
IRkernel packages, and then the kernel specification:
IRkernel packages, and then the kernel specification:
Loading