home · contact · privacy
Improve microblog.pub setup.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 25 Dec 2022 19:18:05 +0000 (20:18 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 25 Dec 2022 19:18:05 +0000 (20:18 +0100)
bullseye/setup_scripts/setup_microblogpub.sh

index 60f3c5798e4b5e336083fe65efddb9bbfdcaeb37..8066430c3dbffc5728901252df48e2cc6053c7d2 100755 (executable)
@@ -26,12 +26,13 @@ python_version=3.11.1
 python_dirname="Python-${python_version}"
 su -lc "wget https://www.python.org/ftp/python/${python_version}/${python_dirname}.tgz" plom
 su -lc "tar -xvf ${python_dirname}.tgz" plom
-su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make && make test"
+# su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make && make test"
+su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make"
 cd /home/plom/${python_dirname}/
 make altinstall
 cd
 # TODO delete python build dir
-su -lc "curl -sSL https://install.python-poetry.org | python3" - plom
+su -lc "curl -sSL https://install.python-poetry.org | python3.11" - plom
 su -lc "git clone https://git.sr.ht/~tsileo/microblog.pub testing.microblog.pub" - plom
 su -lc "poetry config installer.parallel false" - plom
 su -lc "cd testing.microblog.pub && poetry install" - plom