ImportError: cannot load CLoader
domantasjurkus opened this issue · 3 comments
domantasjurkus commented
Stumbled upon this issue when running the tutorial notebook. In case anyone's stuck, follow these steps inside the container. In short:
sudo apt install libyaml-dev
sudo pip --no-cache-dir install --verbose --force-reinstall -I pyyaml
The container root password is password
. I'm guessing ideally the container should be updated to have libyaml-dev
installed?
peteflorence commented
Thanks for posting your solution. What was the issue that you encountered
with yaml?
…On Thu, Oct 11, 2018 at 4:29 AM Domantas Jurkus ***@***.***> wrote:
Stumbled upon this issue when running the tutorial notebook. In case
anyone's stuck, follow these steps
<yaml/pyyaml#108> inside the container. In
short:
1. sudo apt install libyaml-dev
2. sudo pip --no-cache-dir install --verbose --force-reinstall -I
pyyaml
The container root password is password
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#173>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFYQqPlPIKNfW0qlicWBnK9XG0Z3ul6Uks5ujwFegaJpZM4XXB_0>
.
manuelli commented
It seems like yaml was installed in the install_director.sh script. If you commented that out in the dockerfile (as was suggested in #171 ) then yaml wouldn't be installed. I created a patch #174 that just adds yaml to our standard list of dependencies. This should fix the issue.
Thanks for pointing out the problem @domantasjurkus
peteflorence commented
This issue should be fixed by #176