leonardshelby wrote: ↑Wed Dec 05, 2018 12:23 am
@looo Using the condo build, I can get into the path workbench. But I can't create a new path job object, this is the output:
seems to be a typical py3 error. But looking at
Mod/Path/PathScripts/PathJobCmd.py it doesn't look like your installed freecad is the latest one available from channel freecad/label/dev...
you can see your installed freecad-version with:
which should return this:
Code: Select all
freecad 0.18b0 py36h33e0693_20 freecad/label/dev
But I guess in your case freecad is from conda-forge and therefor it's an old version. So best do this:
Code: Select all
initConda # assuming you activate the base-env with initConda
conda env remove -n freecad # assuming your freecad-env is named "freecad"
conda create -n freecad freecad -c freecad/label/dev -c conda-forge
The important thing is to have the channels in the right order. The higher-priority channel must be listed first. Sorry for giving wrong instructions previously.
Another way is to activate the freecad env and update freecad:
Code: Select all
initConda # assuming you activate the base-env with initConda
source activate freecad # assuming your freecad-env is named "freecad"
conda update freecad -c freecad/label/dev -c conda-forge