Hi everyone,
I have just downloaded Docker Toolbox (I am running Windows 10 Home) and successfully installed Fenics. However, when I enter ‘fenicsproject run’, there seems to be an error (although it is not explicitly highlighted as one), and I cannot run the demo file afterwards.
Here is the error
I am not sure what the issue is and am new to Docker and Fenics, would greatly appreciate any help! 
Could you try to run: docker run -ti --rm -v $(pwd):/home/fenics/shared -w /home/fenics/shared quay.io/fenicsproject/stable
Thanks for the reply!
This is the output from running the line
Instead of adding screenshots of the error message, please copy paste them.
This is due to the fact that the path to your current directory ($(pwd)
) has spaces and uppercase letters in it. This should be Fixed by
docker run -ti --rm -v "$(pwd):/home/fenics/shared" -w /home/fenics/shared quay.io/fenicsproject/stable
oops okay!
I’ve tried running the line you provided again and it seems to work, I have managed to run fenicsproject run
successfully. Thanks for the help!