Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • jupyterlab/cuda/r/base
1 result
Show changes
Commits on Source (2)
......@@ -45,7 +45,7 @@ The following startup hooks are put in place:
* set environment variables in `$(R RHOME)/etc/Renviron.site`.
* put inital RStudio settings in place.
* create user's working folder.
* [/usr/local/bin/before-notebook.d/70-qgis.sh](qgisprocess/scripts/usr/local/bin/before-notebook.d/70-qgis.sh) to
* [/usr/local/bin/before-notebook.d/70-qgis.sh](qgisprocess/scripts/usr/local/bin/before-notebook.d/70-qgis.sh) (qgisprocess images) to
* put inital QGIS settings in place.
* copy plugin 'Processing Saga NextGen Provider'.
* [/usr/local/bin/before-notebook.d/71-tensorboard.sh](base/scripts/usr/local/bin/before-notebook.d/71-tensorboard.sh)
......@@ -172,6 +172,13 @@ are installed.
* Application > Telemetry: Telemetry Level: off
* Features > Terminal > Integrated: Font Family: MesloLGS NF
* Workbench > Appearance > Color Theme: Default Dark+
* [QGIS](qgisprocess/conf/user/var/backups/skel/.local/share/QGIS/QGIS3/profiles/default/QGIS/QGIS3.ini) (qgisprocess images):
* Append `/usr/lib/python3/dist-packages` to `PYTHONPATH`.
:information_source: One distro refused to find the Python bindings to QGIS
(at `/usr/lib/python3/dist-packages/qgis`)... Kept for backwards
compatibility.
* Set UI Theme to 'Night Mapping'.
* Set OTB application folder and OTB folder.
* Zsh
* Oh My Zsh: `~/.zshrc`
* Set PATH so it includes user's private bin if it exists
......
.env:
variables:
R_VERSION: "4.4.2"
QGIS_VERSION: "3.40.3"
QGIS_VERSION: "3.42.0"
OTB_VERSION: "9.1.0"
TAG_VERSION_MAJ_MIN: "false"
TAG_VERSION_MAJ: "false"
......
......@@ -209,15 +209,6 @@ RUN apt-get update \
&& apt-get -y install --no-install-recommends python3-pip \
&& export PIP_BREAK_SYSTEM_PACKAGES=1 \
&& /usr/bin/pip install qgis-plugin-manager \
## QGIS: Make sure qgis_mapserver and qgis_process find the qgis module
&& cp -a $(which qgis_mapserver) $(which qgis_mapserver)_ \
&& echo '#!/bin/bash' > $(which qgis_mapserver) \
&& echo "PYTHONPATH=/usr/lib/python3/dist-packages $(which qgis_mapserver)_ \"\${@}\"" >> \
$(which qgis_mapserver) \
&& cp -a $(which qgis_process) $(which qgis_process)_ \
&& echo '#!/bin/bash' > $(which qgis_process) \
&& echo "PYTHONPATH=/usr/lib/python3/dist-packages $(which qgis_process)_ \"\${@}\"" >> \
$(which qgis_process) \
## Install qgisprocess, the R interface to QGIS
&& install2.r --error --skipinstalled -n $NCPUS qgisprocess \
## Strip libraries of binary packages installed from P3M
......