Ich brauche Befehle in einer Anaconda Python-Umgebung in einem chroot mit einem Bash-Skript wie folgt auszuführen:aktivieren Python-Umgebung in chroot
# install miniconda
chroot $chroot_path /bin/bash /miniconda.sh -f -b -p /miniconda
# Install packages in py2 environment
chroot $chroot_path /bin/bash source /miniconda/bin/activate py2 && /miniconda/bin/conda install notebook ipykernel
Aber ich bekomme:
/bin/bash: source: No such file or directory
Wie kann ich machen es funktioniert?
Versuchen Sie, Anaconda in der Chroot installieren. Sie erhalten eine neue Version ... aber Code-Isolation ist irgendwie der Punkt hinter Chroot sowieso. – tdelaney
@tdelaney Was meinst du? Anaconda (Miniconda) ist bereits in der Chroot installiert. – macurie