Incude Freecad In System Path For Just One Conda Virtual Environment
I want to be able to import FreeCAD into my python scripts, but only in one conda virtual environment. Is there a way to do this without adding FreeCAD to the path at the beginning
Solution 1:
Conda does not look for packages from the PATH environment. Check this answer for the details. But first check whether your package can be installed using pip
or conda
.
Solution 2:
You might go to the virtualenv site packages dir and add the path to the freecad into easy_install.pth
Post a Comment for "Incude Freecad In System Path For Just One Conda Virtual Environment"