Search found 1550 matches
- Mon Jul 04, 2022 9:58 am
- Forum: TechDraw
- Topic: Thoughts on ActiveView?
- Replies: 2
- Views: 92
Re: Thoughts on ActiveView?
Never use it, so do as you wish.
- Sun Jul 03, 2022 8:04 am
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1286
- Views: 204150
Re: Curves workbench
Surely that's nothing to do with Curves Wb but something packaging related?edwilliams16 wrote: ↑Sat Jul 02, 2022 9:41 amCode: Select all
progressbar = FreeCAD.Base.ProgressIndicator() Traceback (most recent call last): File "<input>", line 1, in <module> TypeError: cannot create 'N4Base19ProgressIndicatorPyE' instances
- Tue Jun 28, 2022 3:52 pm
- Forum: CfdOF / CFD
- Topic: Starting with CfdOF
- Replies: 23
- Views: 1161
Re: Starting with CfdOF
I'd just go straight to your IT guys, it's the home user area that appears to be the root cause, it should definitely be ofuser as stipulated in C:\MyProgrs\blueCFD-Core-2020\blueCFD-Core_MSys2_mingw64.bat which then starts C:\MyProgrs\blueCFD-Core-2020\msys64\msys2_shell.cmd rem Always create these...
- Tue Jun 28, 2022 3:44 pm
- Forum: Python scripting and macros
- Topic: Help to check FC version
- Replies: 4
- Views: 223
Re: Help to check FC version
To expand on @onekk's input and to 'borrow' what's already in use in the CfdOF Wb, this is the code @oliveroxtoby uses: # Check FreeCAD version ver = FreeCAD.Version() major_ver = int(ver[0]) minor_vers = ver[1].split('.') minor_ver = int(minor_vers[0]) message = "" try: import matplotlib ...
- Mon Jun 27, 2022 1:13 pm
- Forum: CfdOF / CFD
- Topic: Starting with CfdOF
- Replies: 23
- Views: 1161
Re: Starting with CfdOF
Seems there's something wrong with permissions, but I have admin permisions and have installed buecfd as admin. You're having so many problems that I'm thinking there's something significant with your OS or AV settings that we haven't come across before. Just to prove that the blueCFD Terminal is o...
- Mon Jun 27, 2022 9:23 am
- Forum: Help on using FreeCAD
- Topic: class 'ValueError'>: Datum - error in Basic Part Design Tutorial
- Replies: 10
- Views: 401
Re: class 'ValueError'>: Datum - error in Basic Part Design Tutorial
Which tuto are you looking at? The one I see is correct, Point 5 Yes, I'm looking at the same, it's supposed to be an Equals constraint with only one 26mm dimensional constraint, I would have the instruction changed so it's not an Or situation, remember complete newbies expect everything in a tutor...
- Mon Jun 27, 2022 8:51 am
- Forum: Help on using FreeCAD
- Topic: class 'ValueError'>: Datum - error in Basic Part Design Tutorial
- Replies: 10
- Views: 401
Re: class 'ValueError'>: Datum - error in Basic Part Design Tutorial
It doesn't help when the image https://wiki.freecadweb.org/images/7/78 ... rofile.png doesn't match the instructions regarding the constraints (hint: 26mm).
- Thu Jun 23, 2022 4:53 pm
- Forum: Help on using FreeCAD
- Topic: Fasteners <class 'Base.ParserError'>: syntax error
- Replies: 2
- Views: 117
Re: Fasteners <class 'Base.ParserError'>: syntax error
The current version of Fasteners is v0.3.45 not 0.3.38 quoted in your post, the fix could well be in those commits.
- Thu Jun 23, 2022 10:56 am
- Forum: Help on using FreeCAD
- Topic: [SOLVED][bug?] AddOn manager fails to initialise, 0.21 daily build on ubuntu ppa
- Replies: 6
- Views: 224
Re: [maybe bug?] AddOn manager fails to initialise, 0.21 daily build on ubuntu ppa
What needs adding to FC's code IMHO is a version check against existing markdown installation, my Linux partition had 2.6.9 which worked fine also, it's just that specific 3.3.5 that's faulty.
- Thu Jun 23, 2022 10:43 am
- Forum: Help on using FreeCAD
- Topic: [SOLVED][bug?] AddOn manager fails to initialise, 0.21 daily build on ubuntu ppa
- Replies: 6
- Views: 224
Re: [maybe bug?] AddOn manager fails to initialise, 0.21 daily build on ubuntu ppa
This as well results in an error on trying to import it, probably means this dependency did not get installed? Sorry I wasn't thinking, it is definitely installed as the you would receive a completely different error message IMHO. So best to just upgrade, in my case I used pip on my Windows box and...