Search found 81 matches

by David_D
Fri Jan 01, 2021 5:58 am
Forum: Install / Compile
Topic: Ticket #3821 - Docker env build container, now with FEM!
Replies: 73
Views: 22227

Re: Ticket #3821 - Docker env build container, now with FEM!

maybe David (who posted here) can tell us. The docker image is still in working order, as far as I am aware. https://gitlab.com/daviddaish/freecad_docker_env is the canonical repo. Every now and again I update the various components. The thing with the github was more of a symbolic thing, to bring ...
by David_D
Fri Nov 13, 2020 9:30 pm
Forum: Draft, Arch & BIM
Topic: This is now a thread about documentation
Replies: 35
Views: 7284

Re: This is now a thread about documentation

Kunda1 wrote: Thu Oct 15, 2020 10:19 pm @David_D would you be available to make us some more documentation PRs ? :mrgreen: :ugeek:
Funny you ask, I just entered my uni summer break. I shall put aside my sourdough and yogurt projects, and get started today.
by David_D
Tue Aug 25, 2020 2:43 am
Forum: Install / Compile
Topic: Ticket #3821 - Docker env build container, now with FEM!
Replies: 73
Views: 22227

Re: Ticket #3821 - Docker env build container, now with FEM!

The following works make -j $(nproc --ignore 4) . But now I am not able to get XQuartz to display the gui? I followed the wiki on having XQuartz installed and typing xhost +. Still it doesn't display. I also went to the gitlab page and followed the "Allow connections from within network client...
by David_D
Sun Aug 23, 2020 5:18 am
Forum: Install / Compile
Topic: Ticket #3821 - Docker env build container, now with FEM!
Replies: 73
Views: 22227

Re: Ticket #3821 - Docker env build container, now with FEM!

I was able to do the variables from the wiki but when I run the build_script.sh I get to about 80 percent and it gives a error Makefile:129: recipe for target 'all' failed make: *** [all] Error 2. I have attached a pdf of the process that happens. If you scroll up your pdf, you can see there's an e...
by David_D
Thu Aug 20, 2020 8:35 am
Forum: Install / Compile
Topic: Ticket #3821 - Docker env build container, now with FEM!
Replies: 73
Views: 22227

Re: Ticket #3821 - Docker env build container, now with FEM!

Ok I tried it by doing this with the environment variables and they were created but I still get the same CMake issue? docker run -it -e fc_source=~/my_code/freecad_source -e fc_build=~/my_code/freecad_build -e other_files=~/ --rm \ -v $fc_source:/mnt/source \ -v $fc_build:/mnt/build \ -v $other_fi...
by David_D
Wed Aug 19, 2020 7:06 am
Forum: Install / Compile
Topic: Ticket #3821 - Docker env build container, now with FEM!
Replies: 73
Views: 22227

Re: Ticket #3821 - Docker env build container, now with FEM!

I am trying to get it to run on a mac as well and after I do type this code docker run -it --rm \ -v $fc_source:/mnt/source \ -v $fc_build:/mnt/build \ -v $other_files:/mnt/files \ -e "DISPLAY" -e "QT_X11_NO_MITSHM=1" -v /tmp/.X11-unix:/tmp/.X11-unix:ro \ registry.gitlab.com/dav...
by David_D
Fri Jun 26, 2020 12:51 pm
Forum: Open discussion
Topic: Automatic Documentation Generation & Hosting
Replies: 21
Views: 4506

Re: Automatic Documentation Generation & Hosting

I liked this numpy style too, but for me honestly, any doc is better than no doc. I'd like to see the output of sphynx parsing C++ code! Anything I could test? Indeed totally agree there is no reason not to maintain 2 systems, if it doesn't eat up precious human time. After all as we all agree the ...
by David_D
Mon Jun 22, 2020 12:17 am
Forum: Open discussion
Topic: Automatic Documentation Generation & Hosting
Replies: 21
Views: 4506

Re: Automatic Documentation Generation & Hosting

Ah, I'd also like to voice a recommendation that python documentation be written in the numpy style: https://www.sphinx-doc.org/en/master/us ... mple-numpy
by David_D
Sun Jun 21, 2020 11:46 pm
Forum: Install / Compile
Topic: Ticket #3821 - Docker env build container, now with FEM!
Replies: 73
Views: 22227

Re: Ticket #3821 - Docker env build container, now with FEM!

My changes for MacOS doesn't work -> https://forum.freecadweb.org/viewtopic.php?f=4&t=42954&sid=69d2c734fa1fb7b62d49694fc9dbcc08&start=30#p405755 The Gui starts, but as soon as you request any OpenGL stuff, it hangs :( I'm pretty busy myself, so don't get too hard on yourself: this is v...
by David_D
Sun Jun 21, 2020 11:37 pm
Forum: Install / Compile
Topic: Ticket #3821 - Docker env build container, now with FEM!
Replies: 73
Views: 22227

Re: Ticket #3821 - Docker env build container, now with FEM!

Is there a direct command line to launch Freecad from one terminal, without entering first in docker ... ? Yeah, you could combine the commands into a single command like this, and include /mnt/build/bin/FreeCAD at the end of the run command: xhost +local: && fc_source=~/code/freecad_source...