-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstalled.txt
More file actions
56 lines (43 loc) · 1 KB
/
installed.txt
File metadata and controls
56 lines (43 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
raspi-config
enable vnc
enable ssh
set locate
sudo rm /usr/lib/python3.11/EXTERNALLY-MANAGED
/etc/systemd/timesyncd.conf
FallbackNTP=145.18.145.18
in ~:
git clone https://github.com/knifter/BeamForming
apt-get install:
libportaudio2
python3-h5py
pip install
jupyterlab
ipywidgets
ipympl
sounddevice
matplotlib
numpy
picamera
acoular
jupyter lab --generate-config
vi /home/user/.jupyter/jupyter_lab_config.py
c.ServerApp.ip = '0.0.0.0'
jupyter lab password -> "soundcam"
jupyter lab automatisch starten:
create dir and put file:
mkdir -p /home/user/.config/systemd/user
nano /home/user/.config/systemd/user/jupyter.service
"""
[Unit]
Description=Juypyter notebook server
After=network.target
Wants=default.target
[Service]
WorkingDirectory=/home/user
ExecStart=/home/user/.local/bin/jupyter lab --no-browser
[Install]
WantedBy=default.target
"""
systemctl --user daemon-reload
systemctl --user enable jupyter.service
sudo loginctl enable-linger user