Python 在 chroot 中安装失败

Python 在 chroot 中安装失败

我尝试Miniconda在 chroot 中安装 Python:

chroot $1 wget -q https://repo.continuum.io/miniconda/Miniconda3-3.19.0-Linux-x86_64.sh -O /tmp/miniconda.sh                                                                                    
chroot $1 chmod +x /tmp/miniconda.sh
chroot $1 /tmp/miniconda.sh -f -b -p /opt/conda

但安装不完整,我得到:

opt/conda/pkgs/python-3.5.1-0/bin/python: error while loading shared libraries: libpython3.5m.so.1.0: cannot open shared object file: No such file or directory

如果我启动最终的映像并手动运行命令,它就可以工作美好的。 chroot 命令有问题吗?

更新

chroot 环境是使用创建的vmbuilder,它使用debootstrapafaik:

vmbuilder kvm ubuntu -o -v --suite precise --arch amd64 --rootsize 9216 --user username --pass password --hostname $dname --addpkg libjson-perl --addpkg liburi-encode-perl --addpkg curl --addpkg acpid --addpkg openssh-server --addpkg wordpress --addpkg memcached --addpkg php5-memcache --addpkg nfs-common --addpkg dmidecode --addpkg unzip --addpkg mysql-server --addpkg libstring-shellquote-perl --tmpfs - --domain mydomain.com --ip 10.1.1.2 --execscript="./$me"

相关内容