You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The README is not specific w/respect to installing via pip... or in fact, how a developer is supposed to move from creating the workbench to actually installing, developing, and testing it in FC... the critical step is installing into FC..
How do you determine which python FC is using? For example, when I look in the python console, it seems that python is part of the FC executable. If that's the case, then how do we pip install the workbench into this?
Python 3.10.12 (main, Mar 22 2024, 16:50:05) [GCC 11.4.0] on linux
Type 'help', 'copyright', 'credits' or 'license' for more information.
>>> # Gui.runCommand('Std_Workbench',10)
>>> # Gui.runCommand('Std_ViewStatusBar',1)
>>> import sys
>>> print(sys.executable)
/media/toddg/data1/repos/forked/freecad-source/build/bin/FreeCAD
Someone mentioned simply softlinking into the Mod directory... I'll try that.
The text was updated successfully, but these errors were encountered:
it depends on how freecad is installed. If freecad is installed via a package-manager (conda, apt, ...) you can install a workbench with: pip install -e . which will link the directory.
Not sure how it works if you have freecad installed via bundle (appimage, dmg, ...)
The README is not specific w/respect to installing via pip... or in fact, how a developer is supposed to move from creating the workbench to actually installing, developing, and testing it in FC... the critical step is installing into FC..
pip install
the workbench into this?The text was updated successfully, but these errors were encountered: