Hi, I have pulled the docker image and also have sucessfully importted module on global environment:
docker run dolfinx/dolfinx:v0.8.0
from the tutorial site https://jsdokken.com/dolfinx-tutorial/fem.html#official-images
There are several ways of customizing a docker container, such as mounting volumes/sharing folder, setting a working directory, sharing graphical interfaces etc. See
docker run --help
for an extensive list.
Once you have installed DOLFINx, either by using docker or installing from source, you can test the installation by runningpython3 -c "import dolfinx"
. If all goes well, no error-messages should appear.
How do i make it working in a venv?