Extra python modules: Difference between revisions

From FreeCAD Documentation
(translate)
Line 1: Line 1:
<translate>
This page lists several additional python modules or other pieces of software that can be downloaded freely from the internet, and add functionality to your FreeCAD installation.
This page lists several additional python modules or other pieces of software that can be downloaded freely from the internet, and add functionality to your FreeCAD installation.


== PySide (previously PyQt4) ==
== PySide (previously PyQt4) ==

* homepage (PySide): [http://qt-project.org/wiki/PySide http://qt-project.org/wiki/PySide]
* homepage (PySide): [http://qt-project.org/wiki/PySide http://qt-project.org/wiki/PySide]
* license: LGPL
* license: LGPL
Line 9: Line 9:
PySide (previously PyQt) is required by several modules of FreeCAD to access FreeCAD's Qt interface. It is already bundled in the windows verison of FreeCAD, and is usually installed automatically by FreeCAD on Linux, when installing from official repositories. If those modules (Draft, Arch, etc) are enabled after FreeCAD is installed, it means PySide (previously PyQt) is already there, and you don't need to do anything more.
PySide (previously PyQt) is required by several modules of FreeCAD to access FreeCAD's Qt interface. It is already bundled in the windows verison of FreeCAD, and is usually installed automatically by FreeCAD on Linux, when installing from official repositories. If those modules (Draft, Arch, etc) are enabled after FreeCAD is installed, it means PySide (previously PyQt) is already there, and you don't need to do anything more.


'''Note:''' FreeCAD progressively moved away from PyQt after version 0.13, in favour of [http://qt-project.org/wiki/PySide PySide], which does exactly the same job but has a license (LGPL) more compatible with FreeCAD.
'''Note:'''

FreeCAD progressively moved away from PyQt after version 0.13, in favour of [http://qt-project.org/wiki/PySide PySide], which does exactly the same job but has a license (LGPL) more compatible with FreeCAD.


=== Installation ===
=== Installation ===


==== Linux ====
==== Linux ====

The simplest way to install PySide is through your distribution's package manager. On Debian/Ubuntu systems, the package name is generally ''python-PySide'', while on RPM-based systems it is named ''pyside''. The necessary dependencies (Qt and SIP) will be taken care of automatically.
The simplest way to install PySide is through your distribution's package manager. On Debian/Ubuntu systems, the package name is generally ''python-PySide'', while on RPM-based systems it is named ''pyside''. The necessary dependencies (Qt and SIP) will be taken care of automatically.


==== Windows ====
==== Windows ====

The program can be downloaded from http://qt-project.org/wiki/Category:LanguageBindings::PySide::Downloads . You'll need to install the Qt and SIP libraries before installing PySide (to be documented).
The program can be downloaded from http://qt-project.org/wiki/Category:LanguageBindings::PySide::Downloads . You'll need to install the Qt and SIP libraries before installing PySide (to be documented).


==== MacOSX ====
==== MacOSX ====

PyQt on Mac can be installed via homebrew or port. See [[CompileOnMac#Install_Dependencies]] for more information.
PyQt on Mac can be installed via homebrew or port. See [[CompileOnMac#Install_Dependencies]] for more information.


=== Usage ===
=== Usage ===

Once it is installed, you can check that everything is working by typing in FreeCAD python console:
Once it is installed, you can check that everything is working by typing in FreeCAD python console:
</translate>

<pre>
<syntaxhighlight>
import PySide
import PySide
</pre>
</syntaxhighlight>
<translate>

To access the FreeCAD interface, type :
To access the FreeCAD interface, type :
</translate>

<pre>
<syntaxhighlight>
from PySide import QtCore,QtGui
from PySide import QtCore,QtGui
FreeCADWindow = FreeCADGui.getMainWindow()
FreeCADWindow = FreeCADGui.getMainWindow()
</pre>
</syntaxhighlight>
<translate>

Now you can start to explore the interface with the dir() command. You can add new elements, like a custom widget, with commands like :
Now you can start to explore the interface with the dir() command. You can add new elements, like a custom widget, with commands like :
</translate>

<pre>
<syntaxhighlight>
FreeCADWindow.addDockWidget(QtCore.Qt.RghtDockWidgetArea,my_custom_widget)
FreeCADWindow.addDockWidget(QtCore.Qt.RghtDockWidgetArea,my_custom_widget)
</pre>
</syntaxhighlight>
<translate>

Working with Unicode :
Working with Unicode :
</translate>

<pre>
<syntaxhighlight>
text = text.encode('utf-8')
text = text.encode('utf-8')
</pre>
</syntaxhighlight>
<translate>

Working with QFileDialog and OpenFileName :
Working with QFileDialog and OpenFileName :
</translate>

<pre>
<syntaxhighlight>
path = FreeCAD.ConfigGet("AppHomePath")
path = FreeCAD.ConfigGet("AppHomePath")
#path = FreeCAD.ConfigGet("UserAppData")
#path = FreeCAD.ConfigGet("UserAppData")
OpenName, Filter = PySide.QtGui.QFileDialog.getOpenFileName(None, "Read a txt file", path, "*.txt")
OpenName, Filter = PySide.QtGui.QFileDialog.getOpenFileName(None, "Read a txt file", path, "*.txt")
</pre>
</syntaxhighlight>
<translate>

Working with QFileDialog and SaveFileName :
Working with QFileDialog and SaveFileName :
</translate>

<pre>
<syntaxhighlight>
path = FreeCAD.ConfigGet("AppHomePath")
path = FreeCAD.ConfigGet("AppHomePath")
#path = FreeCAD.ConfigGet("UserAppData")
#path = FreeCAD.ConfigGet("UserAppData")
SaveName, Filter = PySide.QtGui.QFileDialog.getSaveFileName(None, "Save a file txt", path, "*.txt")
SaveName, Filter = PySide.QtGui.QFileDialog.getSaveFileName(None, "Save a file txt", path, "*.txt")
</pre>
</syntaxhighlight>
<translate>

===Example of transition from PyQt4 and PySide===
===Example of transition from PyQt4 and PySide===


PS: these examples of errors were found in the transition PyQt4 to PySide and these corrections were made, other solutions are certainly available
PS: these examples of errors were found in the transition PyQt4 to PySide and these corrections were made, other solutions are certainly available with the examples above
</translate>

<pre>
with the examples above

<syntaxhighlight>
try:
try:
import PyQt4 # PyQt4
import PyQt4 # PyQt4
Line 93: Line 85:
from PySide.QtGui import * # PySide
from PySide.QtGui import * # PySide
from PySide.QtCore import * # PySide
from PySide.QtCore import * # PySide
</pre>
</syntaxhighlight>
<translate>

To access the FreeCAD interface, type :
To access the FreeCAD interface, type :
You can add new elements, like a custom widget, with commands like :
You can add new elements, like a custom widget, with commands like :
</translate>

<pre>
<syntaxhighlight>
myNewFreeCADWidget = QtGui.QDockWidget() # create a new dockwidget
myNewFreeCADWidget = QtGui.QDockWidget() # create a new dockwidget
myNewFreeCADWidget.ui = Ui_MainWindow() # myWidget_Ui() # load the Ui script
myNewFreeCADWidget.ui = Ui_MainWindow() # myWidget_Ui() # load the Ui script
Line 109: Line 101:
FCmw = FreeCADGui.getMainWindow() # PySide # the active qt window, = the freecad window since we are inside it
FCmw = FreeCADGui.getMainWindow() # PySide # the active qt window, = the freecad window since we are inside it
FCmw.addDockWidget(QtCore.Qt.RightDockWidgetArea,myNewFreeCADWidget) # add the widget to the main window
FCmw.addDockWidget(QtCore.Qt.RightDockWidgetArea,myNewFreeCADWidget) # add the widget to the main window
</pre>
</syntaxhighlight>
<translate>

Working with Unicode :
Working with Unicode :
</translate>

<pre>
<syntaxhighlight>
try:
try:
text = unicode(text, 'ISO-8859-1').encode('UTF-8') # PyQt4
text = unicode(text, 'ISO-8859-1').encode('UTF-8') # PyQt4
except Exception:
except Exception:
text = text.encode('utf-8') # PySide
text = text.encode('utf-8') # PySide
</pre>
</syntaxhighlight>
<translate>

Working with QFileDialog and OpenFileName :
Working with QFileDialog and OpenFileName :
</translate>

<pre>
<syntaxhighlight>
OpenName = ""
OpenName = ""
try:
try:
Line 128: Line 120:
except Exception:
except Exception:
OpenName, Filter = PySide.QtGui.QFileDialog.getOpenFileName(None, "Lire un fichier FCInfo ou txt", path, "*.FCInfo *.txt")#PySide
OpenName, Filter = PySide.QtGui.QFileDialog.getOpenFileName(None, "Lire un fichier FCInfo ou txt", path, "*.FCInfo *.txt")#PySide
</pre>
</syntaxhighlight>
<translate>

Working with QFileDialog and SaveFileName :
Working with QFileDialog and SaveFileName :
</translate>

<pre>
<syntaxhighlight>
SaveName = ""
SaveName = ""
try:
try:
Line 138: Line 130:
except Exception:
except Exception:
SaveName, Filter = PySide.QtGui.QFileDialog.getSaveFileName(None, "Sauver un fichier FCInfo", path, "*.FCInfo")# PySide
SaveName, Filter = PySide.QtGui.QFileDialog.getSaveFileName(None, "Sauver un fichier FCInfo", path, "*.FCInfo")# PySide
</pre>
</syntaxhighlight>
<translate>

The MessageBox:
The MessageBox:
</translate>

<pre>
<syntaxhighlight>
def errorDialog(msg):
def errorDialog(msg):
diag = QtGui.QMessageBox(QtGui.QMessageBox.Critical,u"Error Message",msg )
diag = QtGui.QMessageBox(QtGui.QMessageBox.Critical,u"Error Message",msg )
Line 151: Line 143:
# diag.setWindowModality(QtCore.Qt.ApplicationModal) # function has been disabled to promote "WindowStaysOnTopHint"
# diag.setWindowModality(QtCore.Qt.ApplicationModal) # function has been disabled to promote "WindowStaysOnTopHint"
diag.exec_()
diag.exec_()
</pre>
</syntaxhighlight>
<translate>

Working with setProperty (PyQt4) and setValue (PySide)
Working with setProperty (PyQt4) and setValue (PySide)
</translate>

<pre>
<syntaxhighlight>
self.doubleSpinBox.setProperty("value", 10.0) # PyQt4
self.doubleSpinBox.setProperty("value", 10.0) # PyQt4
</pre>
</syntaxhighlight>
<translate>
replace to :
replace to :
</translate>
<syntaxhighlight>
<pre>
self.doubleSpinBox.setValue(10.0) # PySide
self.doubleSpinBox.setValue(10.0) # PySide
</pre>
</syntaxhighlight>
<translate>

Working with setToolTip
Working with setToolTip
</translate>

<pre>
<syntaxhighlight>
self.doubleSpinBox.setToolTip(_translate("MainWindow", "Coordinate placement Axis Y", None)) # PyQt4
self.doubleSpinBox.setToolTip(_translate("MainWindow", "Coordinate placement Axis Y", None)) # PyQt4
</pre>
</syntaxhighlight>
<translate>
replace to :
replace to :
</translate>
<syntaxhighlight>
<pre>
self.doubleSpinBox.setToolTip(_fromUtf8("Coordinate placement Axis Y")) # PySide
self.doubleSpinBox.setToolTip(_fromUtf8("Coordinate placement Axis Y")) # PySide
</pre>
</syntaxhighlight>
<translate>
or :
or :
</translate>
<syntaxhighlight>
<pre>
self.doubleSpinBox.setToolTip(u"Coordinate placement Axis Y.")# PySide
self.doubleSpinBox.setToolTip(u"Coordinate placement Axis Y.")# PySide
</pre>
</syntaxhighlight>
<translate>

=== Additional documentation ===
=== Additional documentation ===

Some pyQt4 tutorials (including how to build interfaces with Qt Designer to use with python):
Some pyQt4 tutorials (including how to build interfaces with Qt Designer to use with python):

* http://pyqt.sourceforge.net/Docs/PyQt4/classes.html - the PyQt4 API Reference on sourceforge
* http://pyqt.sourceforge.net/Docs/PyQt4/classes.html - the PyQt4 API Reference on sourceforge
* http://www.rkblog.rk.edu.pl/w/p/introduction-pyqt4/ - a simple introduction
* http://www.rkblog.rk.edu.pl/w/p/introduction-pyqt4/ - a simple introduction
Line 186: Line 182:


== Pivy ==
== Pivy ==

* homepage: [https://bitbucket.org/Coin3D/coin/wiki/Home https://bitbucket.org/Coin3D/coin/wiki/Home]
* homepage: [https://bitbucket.org/Coin3D/coin/wiki/Home https://bitbucket.org/Coin3D/coin/wiki/Home]
* license: BSD
* license: BSD
Line 196: Line 191:


==== Prerequisites ====
==== Prerequisites ====

I believe before compiling Pivy you will want to have Coin and SoQt installed.
I believe before compiling Pivy you will want to have Coin and SoQt installed.


Line 206: Line 200:


==== Debian & Ubuntu ====
==== Debian & Ubuntu ====

Starting with Debian Squeeze and Ubuntu Lucid, pivy will be available directly from the official repositories, saving us a lot of hassle. In the meantime, you can either download one of the packages we made (for debian and ubuntu karmic) availables on the [[Download]] pages, or compile it yourself.
Starting with Debian Squeeze and Ubuntu Lucid, pivy will be available directly from the official repositories, saving us a lot of hassle. In the meantime, you can either download one of the packages we made (for debian and ubuntu karmic) availables on the [[Download]] pages, or compile it yourself.


The best way to compile pivy easily is to grab the debian source package for pivy and make a package with debuild. It is the same source code from the official pivy site, but the debian people made several bug-fixing additions. It also compiles fine on ubuntu karmic: http://packages.debian.org/squeeze/python-pivy (download the .orig.gz and the .diff.gz file, then unzip both, then apply the .diff to the source: go to the unzipped pivy source folder, and apply the .diff patch:
The best way to compile pivy easily is to grab the debian source package for pivy and make a package with debuild. It is the same source code from the official pivy site, but the debian people made several bug-fixing additions. It also compiles fine on ubuntu karmic: http://packages.debian.org/squeeze/python-pivy (download the .orig.gz and the .diff.gz file, then unzip both, then apply the .diff to the source: go to the unzipped pivy source folder, and apply the .diff patch:
</translate>

<pre>
<syntaxhighlight>
patch -p1 < ../pivy_0.5.0~svn765-2.diff
patch -p1 < ../pivy_0.5.0~svn765-2.diff
</pre>
</syntaxhighlight>
<translate>

then
then
</translate>

<pre>
<syntaxhighlight>
debuild
debuild
</pre>
</syntaxhighlight>
<translate>

to have pivy properly built into an official installable package. Then, just install the package with gdebi.
to have pivy properly built into an official installable package. Then, just install the package with gdebi.


==== Other linux distributions ====
==== Other linux distributions ====

First get the latest sources from the [http://pivy.coin3d.org/mercurial/ project's repository]:
First get the latest sources from the [http://pivy.coin3d.org/mercurial/ project's repository]:
</translate>

<pre>
<syntaxhighlight>
hg clone http://hg.sim.no/Pivy/default Pivy
hg clone http://hg.sim.no/Pivy/default Pivy
</pre>
</syntaxhighlight>
<translate>

As of March 2012, the latest version is Pivy-0.5.
As of March 2012, the latest version is Pivy-0.5.


Then you need a tool called SWIG to generate the C++ code for the Python bindings. Pivy-0.5 reports that it has only been tested with SWIG 1.3.31, 1.3.33, 1.3.35, and 1.3.40. So you can download a source tarball for one of these old versions from [http://www.swig.org http://www.swig.org]. Then unpack it and from a command line do (as root):
Then you need a tool called SWIG to generate the C++ code for the Python bindings. Pivy-0.5 reports that it has only been tested with SWIG 1.3.31, 1.3.33, 1.3.35, and 1.3.40. So you can download a source tarball for one of these old versions from [http://www.swig.org http://www.swig.org]. Then unpack it and from a command line do (as root):
</translate>

<pre>
<syntaxhighlight>
./configure
./configure
make
make
make install (or checkinstall if you use it)
make install (or checkinstall if you use it)
</pre>
</syntaxhighlight>
<translate>

It takes just a few seconds to build.
It takes just a few seconds to build.


Line 246: Line 238:


After that go to the pivy sources and call
After that go to the pivy sources and call
</translate>

<pre>
<syntaxhighlight>
python setup.py build
python setup.py build
</pre>
</syntaxhighlight>
<translate>

which creates the source files. Note that build can produce thousands of warnings, but hopefully there will be no errors.
which creates the source files. Note that build can produce thousands of warnings, but hopefully there will be no errors.


Line 256: Line 248:


After that, install by issuing (as root):
After that, install by issuing (as root):
</translate>

<pre>
<syntaxhighlight>
python setup.py install (or checkinstall python setup.py install)
python setup.py install (or checkinstall python setup.py install)
</pre>
</syntaxhighlight>
<translate>
That's it, pivy is installed.
That's it, pivy is installed.


==== Mac OS ====
==== Mac OS ====

These instructions may not be complete. Something close to this worked for OS 10.7 as of March 2012. I use MacPorts for repositories, but other options should also work.
These instructions may not be complete. Something close to this worked for OS 10.7 as of March 2012. I use MacPorts for repositories, but other options should also work.


As for linux, get the latest source:
As for linux, get the latest source:
</translate>

<pre>
<syntaxhighlight>
hg clone http://hg.sim.no/Pivy/default Pivy
hg clone http://hg.sim.no/Pivy/default Pivy
</pre>
</syntaxhighlight>
<translate>

If you don't have hg, you can get it from MacPorts:
If you don't have hg, you can get it from MacPorts:
</translate>

<pre>
<syntaxhighlight>
port install mercurial
port install mercurial
</pre>
</syntaxhighlight>
<translate>

Then, as above you need SWIG. It should be a matter of:
Then, as above you need SWIG. It should be a matter of:
</translate>

<pre>
<syntaxhighlight>
port install swig
port install swig
</pre>
</syntaxhighlight>
<translate>

I found I needed also:
I found I needed also:
</translate>

<pre>
<syntaxhighlight>
port install swig-python
port install swig-python
</pre>
</syntaxhighlight>
<translate>

As of March 2012, MacPorts SWIG is version 2.0.4. As noted above for linux, you might be better off downloading an older version. SWIG 2.0.4 seems to have a bug that stops Pivy building. See first message in this digest: https://sourceforge.net/mailarchive/message.php?msg_id=28114815
As of March 2012, MacPorts SWIG is version 2.0.4. As noted above for linux, you might be better off downloading an older version. SWIG 2.0.4 seems to have a bug that stops Pivy building. See first message in this digest: https://sourceforge.net/mailarchive/message.php?msg_id=28114815


This can be corrected by editing the 2 source locations to add dereferences: *arg4, *arg5 in place of arg4, arg5. Now Pivy should build:
This can be corrected by editing the 2 source locations to add dereferences: *arg4, *arg5 in place of arg4, arg5. Now Pivy should build:
</translate>

<pre>
<syntaxhighlight>
python setup.py build
python setup.py build
sudo python setup.py install
sudo python setup.py install
</pre>
</syntaxhighlight>
<translate>

==== Windows ====
==== Windows ====

Assuming you are using Visual Studio 2005 or later you should open a command prompt with 'Visual Studio 2005 Command prompt' from the Tools menu.
Assuming you are using Visual Studio 2005 or later you should open a command prompt with 'Visual Studio 2005 Command prompt' from the Tools menu.
If the Python interpreter is not yet in the system path do
If the Python interpreter is not yet in the system path do
</translate>

<pre>
<syntaxhighlight>
set PATH=path_to_python_2.5;%PATH%
set PATH=path_to_python_2.5;%PATH%
</pre>
</syntaxhighlight>
<translate>

To get pivy working you should get the latest sources from the project's repository:
To get pivy working you should get the latest sources from the project's repository:
</translate>

<pre>
<syntaxhighlight>
svn co https://svn.coin3d.org/repos/Pivy/trunk Pivy
svn co https://svn.coin3d.org/repos/Pivy/trunk Pivy
</pre>
</syntaxhighlight>
<translate>

Then you need a tool called SWIG to generate the C++ code for the Python bindings. It is recommended to use version 1.3.25 of SWIG, not the latest version, because at the moment pivy will only function correctly with 1.3.25. Download the binaries for 1.3.25 from [http://www.swig.org http://www.swig.org]. Then unpack it and from the command line add it to the system path
Then you need a tool called SWIG to generate the C++ code for the Python bindings. It is recommended to use version 1.3.25 of SWIG, not the latest version, because at the moment pivy will only function correctly with 1.3.25. Download the binaries for 1.3.25 from [http://www.swig.org http://www.swig.org]. Then unpack it and from the command line add it to the system path
</translate>

<pre>
<syntaxhighlight>
set PATH=path_to_swig_1.3.25;%PATH%
set PATH=path_to_swig_1.3.25;%PATH%
</pre>
</syntaxhighlight>
<translate>

and set COINDIR to the appropriate path
and set COINDIR to the appropriate path
</translate>

<pre>
<syntaxhighlight>
set COINDIR=path_to_coin
set COINDIR=path_to_coin
</pre>
</syntaxhighlight>
<translate>

On Windows the pivy config file expects SoWin instead of SoQt as default. I didn't find an obvious way to build with SoQt, so I modified the file setup.py directly.
On Windows the pivy config file expects SoWin instead of SoQt as default. I didn't find an obvious way to build with SoQt, so I modified the file setup.py directly.
In line 200 just remove the part 'sowin' : ('gui._sowin', 'sowin-config', 'pivy.gui.') (do not remove the closing parenthesis).
In line 200 just remove the part 'sowin' : ('gui._sowin', 'sowin-config', 'pivy.gui.') (do not remove the closing parenthesis).


After that go to the pivy sources and call
After that go to the pivy sources and call
</translate>

<pre>
<syntaxhighlight>
python setup.py build
python setup.py build
</pre>
</syntaxhighlight>
<translate>
which creates the source files. You may run into a compiler error several header files couldn't be found. In this case adjust the INCLUDE variable
which creates the source files. You may run into a compiler error several header files couldn't be found. In this case adjust the INCLUDE variable
</translate>

<pre>
<syntaxhighlight>
set INCLUDE=%INCLUDE%;path_to_coin_include_dir
set INCLUDE=%INCLUDE%;path_to_coin_include_dir
</pre>
</syntaxhighlight>
<translate>

and if the SoQt headers are not in the same place as the Coin headers also
and if the SoQt headers are not in the same place as the Coin headers also
</translate>

<pre>
<syntaxhighlight>
set INCLUDE=%INCLUDE%;path_to_soqt_include_dir
set INCLUDE=%INCLUDE%;path_to_soqt_include_dir
</pre>
</syntaxhighlight>
<translate>

and finally the Qt headers
and finally the Qt headers
</translate>

<pre>
<syntaxhighlight>
set INCLUDE=%INCLUDE%;path_to_qt4\include\Qt
set INCLUDE=%INCLUDE%;path_to_qt4\include\Qt
</pre>
</syntaxhighlight>
<translate>

If you are using the Express Edition of Visual Studio you may get a python keyerror exception.
If you are using the Express Edition of Visual Studio you may get a python keyerror exception.
In this case you have to modify a few things in msvccompiler.py located in your python installation.
In this case you have to modify a few things in msvccompiler.py located in your python installation.


Go to line 122 and replace the line
Go to line 122 and replace the line
</translate>

<pre>
<syntaxhighlight>
vsbase = r"Software\Microsoft\VisualStudio\%0.1f" % version
vsbase = r"Software\Microsoft\VisualStudio\%0.1f" % version
</pre>
</syntaxhighlight>
<translate>

with
with
</translate>

<pre>
<syntaxhighlight>
vsbase = r"Software\Microsoft\VCExpress\%0.1f" % version
vsbase = r"Software\Microsoft\VCExpress\%0.1f" % version
</pre>
</syntaxhighlight>
<translate>

Then retry again.
Then retry again.
If you get a second error like
If you get a second error like
</translate>

<pre>
<syntaxhighlight>
error: Python was built with Visual Studio 2003;...
error: Python was built with Visual Studio 2003;...
</pre>
</syntaxhighlight>
<translate>

you must also replace line 128
you must also replace line 128
</translate>

<pre>
<syntaxhighlight>
self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv1.1")
self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv1.1")
</pre>
</syntaxhighlight>
<translate>

with
with
</translate>

<pre>
<syntaxhighlight>
self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv2.0")
self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv2.0")
</pre>
</syntaxhighlight>
<translate>

Retry once again. If you get again an error like
Retry once again. If you get again an error like
</translate>

<pre>
<syntaxhighlight>
error: Python was built with Visual Studio version 8.0, and extensions need to be built with the same version of the compiler, but it isn't installed.
error: Python was built with Visual Studio version 8.0, and extensions need to be built with the same version of the compiler, but it isn't installed.
</pre>
</syntaxhighlight>
<translate>

then you should check the environment variables DISTUTILS_USE_SDK and MSSDK with
then you should check the environment variables DISTUTILS_USE_SDK and MSSDK with
</translate>

<pre>
<syntaxhighlight>
echo %DISTUTILS_USE_SDK%
echo %DISTUTILS_USE_SDK%
echo %MSSDK%
echo %MSSDK%
</pre>
</syntaxhighlight>
<translate>

If not yet set then just set it e.g. to 1
If not yet set then just set it e.g. to 1
</translate>

<pre>
<syntaxhighlight>
set DISTUTILS_USE_SDK=1
set DISTUTILS_USE_SDK=1
set MSSDK=1
set MSSDK=1
</pre>
</syntaxhighlight>
<translate>

Now, you may run into a compiler error where a 'const char*' cannot be converted in a 'char*'. To fix that you just need to write a 'const' before in the appropriate lines. There are six lines to fix.
Now, you may run into a compiler error where a 'const char*' cannot be converted in a 'char*'. To fix that you just need to write a 'const' before in the appropriate lines. There are six lines to fix.
After that copy the generated pivy directory to a place where the python interpreter in FreeCAD can find it.
After that copy the generated pivy directory to a place where the python interpreter in FreeCAD can find it.


=== Usage ===
=== Usage ===

To check if Pivy is correctly installed:
To check if Pivy is correctly installed:
</translate>

<pre>
<syntaxhighlight>
import pivy
import pivy
</pre>
</syntaxhighlight>
<translate>

To have Pivy access the FreeCAD scenegraph do the following:
To have Pivy access the FreeCAD scenegraph do the following:
</translate>

<pre>
<syntaxhighlight>
from pivy import coin
from pivy import coin
App.newDocument() # Open a document and a view
App.newDocument() # Open a document and a view
Line 427: Line 416:
FCSceneGraph = view.getSceneGraph() # returns a pivy Python object that holds a SoSeparator, the main "container" of the Coin scenegraph
FCSceneGraph = view.getSceneGraph() # returns a pivy Python object that holds a SoSeparator, the main "container" of the Coin scenegraph
FCSceneGraph.addChild(coin.SoCube()) # add a box to scene
FCSceneGraph.addChild(coin.SoCube()) # add a box to scene
</pre>
</syntaxhighlight>
<translate>

You can now explore the FCSceneGraph with the dir() command.
You can now explore the FCSceneGraph with the dir() command.


=== Additonal Documentation ===
=== Additonal Documentation ===

Unfortunately documentation about pivy is still almost inexistant on the net. But you might find Coin documentation useful, since pivy simply translate Coin functions, nodes and methods in python, everything keeps the same name and properties, keeping in mind the difference of syntax between C and python:
Unfortunately documentation about pivy is still almost inexistant on the net. But you might find Coin documentation useful, since pivy simply translate Coin functions, nodes and methods in python, everything keeps the same name and properties, keeping in mind the difference of syntax between C and python:


Line 441: Line 429:


== pyCollada ==
== pyCollada ==

* homepage: http://pycollada.github.com
* homepage: http://pycollada.github.com
* license: BSD
* license: BSD
Line 449: Line 436:


=== Installation ===
=== Installation ===

Pycollada is usually not yet available in linux distributions repositories, but since it is made only of python files, it doesn't require compilation, and is easy to install. You have 2 ways, or directly from the official pycollada git repository, or with the easy_install tool.
Pycollada is usually not yet available in linux distributions repositories, but since it is made only of python files, it doesn't require compilation, and is easy to install. You have 2 ways, or directly from the official pycollada git repository, or with the easy_install tool.


==== Linux ====
==== Linux ====

In either case, you'll need the following packages already installed on your system:
In either case, you'll need the following packages already installed on your system:
</translate>

<pre>
<syntaxhighlight>
python-lxml
python-lxml
python-numpy
python-numpy
python-dateutil
python-dateutil
</pre>
</syntaxhighlight>
<translate>

===== From the git repository =====
===== From the git repository =====
</translate>

<pre>
<syntaxhighlight>
git clone git://github.com/pycollada/pycollada.git pycollada
git clone git://github.com/pycollada/pycollada.git pycollada
cd pycollada
cd pycollada
sudo python setup.py install
sudo python setup.py install
</pre>
</syntaxhighlight>
<translate>


===== With easy_install =====
===== With easy_install =====

Assuming you have a complete python installation already, the easy_install utility should be present already:
Assuming you have a complete python installation already, the easy_install utility should be present already:
</translate>

<pre>
<syntaxhighlight>
easy_install pycollada
easy_install pycollada
</pre>
</syntaxhighlight>
<translate>

You can check if pycollada was correctly installed by issuing in a python console:
You can check if pycollada was correctly installed by issuing in a python console:
</translate>

<pre>
<syntaxhighlight>
import collada
import collada
</pre>
</syntaxhighlight>
<translate>

If it returns nothing (no error message), then all is OK
If it returns nothing (no error message), then all is OK


Line 509: Line 492:


If you need to install pip:
If you need to install pip:
</translate>
$ sudo easy_install pip
<pre>

$ sudo easy_install pip
</pre>
<translate>
Install pycollada:
Install pycollada:
</translate>
$ sudo pip install pycollada
<pre>

$ sudo pip install pycollada
</pre>
<translate>
If you are using a binary version of FreeCAD, you can tell pip to install pycollada into the site-packages inside FreeCAD.app:
If you are using a binary version of FreeCAD, you can tell pip to install pycollada into the site-packages inside FreeCAD.app:
</translate>
$ pip install --target="/Applications/FreeCAD.app/Contents/lib/python2.7/site-packages" pycollada
<pre>

$ pip install --target="/Applications/FreeCAD.app/Contents/lib/python2.7/site-packages" pycollada
</pre>
<translate>
== IfcOpenShell ==
== IfcOpenShell ==


Line 526: Line 518:


=== Installation ===
=== Installation ===

Since ifcopenshell is pretty new, you'll likely need to compile it yourself.
Since ifcopenshell is pretty new, you'll likely need to compile it yourself.


==== Linux ====
==== Linux ====

You will need a couple of development packages installed on your system in order to compile ifcopenshell:
You will need a couple of development packages installed on your system in order to compile ifcopenshell:
</translate>

<pre>
<syntaxhighlight>
liboce-*-dev
liboce-*-dev
python-dev
python-dev
swig
swig
</pre>
</syntaxhighlight>
<translate>

but since FreeCAD requires all of them too, if you can compile FreeCAD, you won't need any extra dependency to compile IfcOpenShell.
but since FreeCAD requires all of them too, if you can compile FreeCAD, you won't need any extra dependency to compile IfcOpenShell.


Grab the latest source code from here:
Grab the latest source code from here:
</translate>

<pre>
<syntaxhighlight>
svn co https://ifcopenshell.svn.sourceforge.net/svnroot/ifcopenshell ifcopenshell
svn co https://ifcopenshell.svn.sourceforge.net/svnroot/ifcopenshell ifcopenshell
</pre>
</syntaxhighlight>
<translate>

The build process is very easy:
The build process is very easy:
</translate>

<pre>
<syntaxhighlight>
mkdir ifcopenshell-build
mkdir ifcopenshell-build
cd ifcopenshell-build
cd ifcopenshell-build
cmake ../ifcopenshell/cmake
cmake ../ifcopenshell/cmake
</pre>
</syntaxhighlight>
<translate>

or, if you are using oce instead of opencascade:
or, if you are using oce instead of opencascade:
</translate>

<pre>
<syntaxhighlight>
cmake -DOCC_INCLUDE_DIR=/usr/include/oce ../ifcopenshell/cmake
cmake -DOCC_INCLUDE_DIR=/usr/include/oce ../ifcopenshell/cmake
</pre>
</syntaxhighlight>
<translate>

Since ifcopenshell is made primarily for Blender, it uses python3 by default. To use it inside FreeCAD, you need to compile it against the same version of python that is used by FreeCAD. So you might need to force the python version with additional cmake parameters (adjust the python version to yours):
Since ifcopenshell is made primarily for Blender, it uses python3 by default. To use it inside FreeCAD, you need to compile it against the same version of python that is used by FreeCAD. So you might need to force the python version with additional cmake parameters (adjust the python version to yours):
</translate>

<pre>
<syntaxhighlight>
cmake -DOCC_INCLUDE_DIR=/usr/include/oce -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/python2.7.so ../ifcopenshell/cmake
cmake -DOCC_INCLUDE_DIR=/usr/include/oce -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/python2.7.so ../ifcopenshell/cmake
</pre>
</syntaxhighlight>
<translate>

Then:
Then:
</translate>

<pre>
<syntaxhighlight>
make
make
sudo make install
sudo make install
</pre>
</syntaxhighlight>
<translate>

You can check that ifcopenshell was correctly installed by issuing in a python console:
You can check that ifcopenshell was correctly installed by issuing in a python console:
</translate>

<pre>
<syntaxhighlight>
import IfcImport
import IfcImport
</pre>
</syntaxhighlight>
<translate>

If it returns nothing (no error message), then all is OK
If it returns nothing (no error message), then all is OK


Line 599: Line 589:


=== Installation ===
=== Installation ===

On all platforms, only by installing the appropriate package from http://www.opendesign.com/guestfiles/TeighaFileConverter . After installation, if the utility is not found automatically by FreeCAD, you might need to set the path to the converter executable manually, in the menu Edit -> Preferences -> Draft -> Import/Export options.
On all platforms, only by installing the appropriate package from http://www.opendesign.com/guestfiles/TeighaFileConverter . After installation, if the utility is not found automatically by FreeCAD, you might need to set the path to the converter executable manually, in the menu Edit -> Preferences -> Draft -> Import/Export options.


{{docnav|Localisation|Source documentation}}
{{docnav|Localisation|Source documentation}}

{{languages | {{es|Extra python modules/es}} {{fr|Extra python modules/fr}} {{it|Extra python modules/it}} {{jp|Extra python modules/jp}} {{ru|Extra python modules/ru}} {{se|Extra python modules/se}} }}


[[Category:Developer Documentation]]
[[Category:Developer Documentation]]

</translate>
{{clear}}
<languages/>

Revision as of 21:59, 8 November 2014

This page lists several additional python modules or other pieces of software that can be downloaded freely from the internet, and add functionality to your FreeCAD installation.

PySide (previously PyQt4)

PySide (previously PyQt) is required by several modules of FreeCAD to access FreeCAD's Qt interface. It is already bundled in the windows verison of FreeCAD, and is usually installed automatically by FreeCAD on Linux, when installing from official repositories. If those modules (Draft, Arch, etc) are enabled after FreeCAD is installed, it means PySide (previously PyQt) is already there, and you don't need to do anything more.

Note: FreeCAD progressively moved away from PyQt after version 0.13, in favour of PySide, which does exactly the same job but has a license (LGPL) more compatible with FreeCAD.

Installation

Linux

The simplest way to install PySide is through your distribution's package manager. On Debian/Ubuntu systems, the package name is generally python-PySide, while on RPM-based systems it is named pyside. The necessary dependencies (Qt and SIP) will be taken care of automatically.

Windows

The program can be downloaded from http://qt-project.org/wiki/Category:LanguageBindings::PySide::Downloads . You'll need to install the Qt and SIP libraries before installing PySide (to be documented).

MacOSX

PyQt on Mac can be installed via homebrew or port. See CompileOnMac#Install_Dependencies for more information.

Usage

Once it is installed, you can check that everything is working by typing in FreeCAD python console:

import PySide

To access the FreeCAD interface, type :

from PySide import QtCore,QtGui
FreeCADWindow = FreeCADGui.getMainWindow()

Now you can start to explore the interface with the dir() command. You can add new elements, like a custom widget, with commands like :

FreeCADWindow.addDockWidget(QtCore.Qt.RghtDockWidgetArea,my_custom_widget)

Working with Unicode :

text = text.encode('utf-8')

Working with QFileDialog and OpenFileName :

path = FreeCAD.ConfigGet("AppHomePath")
#path = FreeCAD.ConfigGet("UserAppData")
OpenName, Filter = PySide.QtGui.QFileDialog.getOpenFileName(None, "Read a txt file", path, "*.txt")

Working with QFileDialog and SaveFileName :

path = FreeCAD.ConfigGet("AppHomePath")
#path = FreeCAD.ConfigGet("UserAppData")
SaveName, Filter = PySide.QtGui.QFileDialog.getSaveFileName(None, "Save a file txt", path, "*.txt")

Example of transition from PyQt4 and PySide

PS: these examples of errors were found in the transition PyQt4 to PySide and these corrections were made, other solutions are certainly available with the examples above

try:
    import PyQt4                                        # PyQt4
    from PyQt4 import QtGui ,QtCore                     # PyQt4
    from PyQt4.QtGui import QComboBox                   # PyQt4
    from PyQt4.QtGui import QMessageBox                 # PyQt4
    from PyQt4.QtGui import QTableWidget, QApplication  # PyQt4
    from PyQt4.QtGui import *                           # PyQt4
    from PyQt4.QtCore import *                          # PyQt4
except Exception:
    import PySide                                       # PySide
    from PySide import QtGui ,QtCore                    # PySide
    from PySide.QtGui import QComboBox                  # PySide
    from PySide.QtGui import QMessageBox                # PySide
    from PySide.QtGui import QTableWidget, QApplication # PySide
    from PySide.QtGui import *                          # PySide
    from PySide.QtCore import *                         # PySide

To access the FreeCAD interface, type : You can add new elements, like a custom widget, with commands like :

myNewFreeCADWidget = QtGui.QDockWidget()          # create a new dockwidget
myNewFreeCADWidget.ui = Ui_MainWindow()           # myWidget_Ui()             # load the Ui script
myNewFreeCADWidget.ui.setupUi(myNewFreeCADWidget) # setup the ui
try:
    app = QtGui.qApp                              # PyQt4 # the active qt window, = the freecad window since we are inside it
    FCmw = app.activeWindow()                     # PyQt4 # the active qt window, = the freecad window since we are inside it
    FCmw.addDockWidget(QtCore.Qt.RightDockWidgetArea,myNewFreeCADWidget) # add the widget to the main window
except Exception:
    FCmw = FreeCADGui.getMainWindow()             # PySide # the active qt window, = the freecad window since we are inside it 
    FCmw.addDockWidget(QtCore.Qt.RightDockWidgetArea,myNewFreeCADWidget) # add the widget to the main window

Working with Unicode :

try:
    text = unicode(text, 'ISO-8859-1').encode('UTF-8')  # PyQt4
except Exception:
    text = text.encode('utf-8')                         # PySide

Working with QFileDialog and OpenFileName :

OpenName = ""
try:
    OpenName = QFileDialog.getOpenFileName(None,QString.fromLocal8Bit("Lire un fichier FCInfo ou txt"),path,"*.FCInfo *.txt") # PyQt4
except Exception:
    OpenName, Filter = PySide.QtGui.QFileDialog.getOpenFileName(None, "Lire un fichier FCInfo ou txt", path, "*.FCInfo *.txt")#PySide

Working with QFileDialog and SaveFileName :

SaveName = ""
try:
    SaveName = QFileDialog.getSaveFileName(None,QString.fromLocal8Bit("Sauver un fichier FCInfo"),path,"*.FCInfo") # PyQt4
except Exception:
    SaveName, Filter = PySide.QtGui.QFileDialog.getSaveFileName(None, "Sauver un fichier FCInfo", path, "*.FCInfo")# PySide

The MessageBox:

def errorDialog(msg):
    diag = QtGui.QMessageBox(QtGui.QMessageBox.Critical,u"Error Message",msg )
    try:
        diag.setWindowFlags(PyQt4.QtCore.Qt.WindowStaysOnTopHint) # PyQt4 # this function sets the window before
    except Exception:    
        diag.setWindowFlags(PySide.QtCore.Qt.WindowStaysOnTopHint)# PySide # this function sets the window before
#    diag.setWindowModality(QtCore.Qt.ApplicationModal)       # function has been disabled to promote "WindowStaysOnTopHint"
    diag.exec_()

Working with setProperty (PyQt4) and setValue (PySide)

self.doubleSpinBox.setProperty("value", 10.0)  # PyQt4

replace to :

self.doubleSpinBox.setValue(10.0)  # PySide

Working with setToolTip

self.doubleSpinBox.setToolTip(_translate("MainWindow", "Coordinate placement Axis Y", None))  # PyQt4

replace to :

self.doubleSpinBox.setToolTip(_fromUtf8("Coordinate placement Axis Y"))  # PySide 

or :

self.doubleSpinBox.setToolTip(u"Coordinate placement Axis Y.")# PySide

Additional documentation

Some pyQt4 tutorials (including how to build interfaces with Qt Designer to use with python):

Pivy

Pivy is a needed by several modules to access the 3D view of FreeCAD. On windows, Pivy is already bundled inside the FreeCAD installer, and on Linux it is usually automatically installed when you install FreeCAD from an official repository. On MacOSX, unfortunately, you will need to compile pivy yourself.

Installation

Prerequisites

I believe before compiling Pivy you will want to have Coin and SoQt installed.

I found for building on Mac it was sufficient to install the Coin3 binary package. Attempting to install coin from MacPorts was problematic: tried to add a lot of X Windows packages and ultimately crashed with a script error.

For Fedora I found an RPM with Coin3.

SoQt compiled from source fine on Mac and Linux.

Debian & Ubuntu

Starting with Debian Squeeze and Ubuntu Lucid, pivy will be available directly from the official repositories, saving us a lot of hassle. In the meantime, you can either download one of the packages we made (for debian and ubuntu karmic) availables on the Download pages, or compile it yourself.

The best way to compile pivy easily is to grab the debian source package for pivy and make a package with debuild. It is the same source code from the official pivy site, but the debian people made several bug-fixing additions. It also compiles fine on ubuntu karmic: http://packages.debian.org/squeeze/python-pivy (download the .orig.gz and the .diff.gz file, then unzip both, then apply the .diff to the source: go to the unzipped pivy source folder, and apply the .diff patch:

patch -p1 < ../pivy_0.5.0~svn765-2.diff

then

debuild

to have pivy properly built into an official installable package. Then, just install the package with gdebi.

Other linux distributions

First get the latest sources from the project's repository:

hg clone http://hg.sim.no/Pivy/default Pivy 

As of March 2012, the latest version is Pivy-0.5.

Then you need a tool called SWIG to generate the C++ code for the Python bindings. Pivy-0.5 reports that it has only been tested with SWIG 1.3.31, 1.3.33, 1.3.35, and 1.3.40. So you can download a source tarball for one of these old versions from http://www.swig.org. Then unpack it and from a command line do (as root):

./configure
make
make install (or checkinstall if you use it)

It takes just a few seconds to build.

Alternatively, you can try building with a more recent SWIG. As of March 2012, a typical repository version is 2.0.4. Pivy has a minor compile problem with SWIG 2.0.4 on Mac OS (see below) but seems to build fine on Fedora Core 15.

After that go to the pivy sources and call

python setup.py build 

which creates the source files. Note that build can produce thousands of warnings, but hopefully there will be no errors.

This is probably obsolete, but you may run into a compiler error where a 'const char*' cannot be converted in a 'char*'. To fix that you just need to write a 'const' before in the appropriate lines. There are six lines to fix.

After that, install by issuing (as root):

python setup.py install (or checkinstall python setup.py install)

That's it, pivy is installed.

Mac OS

These instructions may not be complete. Something close to this worked for OS 10.7 as of March 2012. I use MacPorts for repositories, but other options should also work.

As for linux, get the latest source:

hg clone http://hg.sim.no/Pivy/default Pivy 

If you don't have hg, you can get it from MacPorts:

port install mercurial

Then, as above you need SWIG. It should be a matter of:

port install swig

I found I needed also:

port install swig-python

As of March 2012, MacPorts SWIG is version 2.0.4. As noted above for linux, you might be better off downloading an older version. SWIG 2.0.4 seems to have a bug that stops Pivy building. See first message in this digest: https://sourceforge.net/mailarchive/message.php?msg_id=28114815

This can be corrected by editing the 2 source locations to add dereferences: *arg4, *arg5 in place of arg4, arg5. Now Pivy should build:

python setup.py build
sudo python setup.py install

Windows

Assuming you are using Visual Studio 2005 or later you should open a command prompt with 'Visual Studio 2005 Command prompt' from the Tools menu. If the Python interpreter is not yet in the system path do

set PATH=path_to_python_2.5;%PATH%

To get pivy working you should get the latest sources from the project's repository:

svn co https://svn.coin3d.org/repos/Pivy/trunk Pivy 

Then you need a tool called SWIG to generate the C++ code for the Python bindings. It is recommended to use version 1.3.25 of SWIG, not the latest version, because at the moment pivy will only function correctly with 1.3.25. Download the binaries for 1.3.25 from http://www.swig.org. Then unpack it and from the command line add it to the system path

set PATH=path_to_swig_1.3.25;%PATH%

and set COINDIR to the appropriate path

set COINDIR=path_to_coin

On Windows the pivy config file expects SoWin instead of SoQt as default. I didn't find an obvious way to build with SoQt, so I modified the file setup.py directly. In line 200 just remove the part 'sowin' : ('gui._sowin', 'sowin-config', 'pivy.gui.') (do not remove the closing parenthesis).

After that go to the pivy sources and call

python setup.py build 

which creates the source files. You may run into a compiler error several header files couldn't be found. In this case adjust the INCLUDE variable

set INCLUDE=%INCLUDE%;path_to_coin_include_dir

and if the SoQt headers are not in the same place as the Coin headers also

set INCLUDE=%INCLUDE%;path_to_soqt_include_dir

and finally the Qt headers

set INCLUDE=%INCLUDE%;path_to_qt4\include\Qt

If you are using the Express Edition of Visual Studio you may get a python keyerror exception. In this case you have to modify a few things in msvccompiler.py located in your python installation.

Go to line 122 and replace the line

vsbase = r"Software\Microsoft\VisualStudio\%0.1f" % version

with

vsbase = r"Software\Microsoft\VCExpress\%0.1f" % version

Then retry again. If you get a second error like

error: Python was built with Visual Studio 2003;...

you must also replace line 128

self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv1.1")

with

self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv2.0")

Retry once again. If you get again an error like

error: Python was built with Visual Studio version 8.0, and extensions need to be built with the same version of the compiler, but it isn't installed.

then you should check the environment variables DISTUTILS_USE_SDK and MSSDK with

echo %DISTUTILS_USE_SDK%
echo %MSSDK%

If not yet set then just set it e.g. to 1

set DISTUTILS_USE_SDK=1
set MSSDK=1

Now, you may run into a compiler error where a 'const char*' cannot be converted in a 'char*'. To fix that you just need to write a 'const' before in the appropriate lines. There are six lines to fix. After that copy the generated pivy directory to a place where the python interpreter in FreeCAD can find it.

Usage

To check if Pivy is correctly installed:

import pivy

To have Pivy access the FreeCAD scenegraph do the following:

from pivy import coin
App.newDocument() # Open a document and a view 
view = Gui.ActiveDocument.ActiveView 
FCSceneGraph = view.getSceneGraph() # returns a pivy Python object that holds a SoSeparator, the main "container" of the Coin scenegraph
FCSceneGraph.addChild(coin.SoCube()) # add a box to scene 

You can now explore the FCSceneGraph with the dir() command.

Additonal Documentation

Unfortunately documentation about pivy is still almost inexistant on the net. But you might find Coin documentation useful, since pivy simply translate Coin functions, nodes and methods in python, everything keeps the same name and properties, keeping in mind the difference of syntax between C and python:

You can also look at the Draft.py file in the FreeCAD Mod/Draft folder, since it makes big use of pivy.

pyCollada

pyCollada is a python library that allow programs to read and write Collada (*.DAE) files. When pyCollada is installed on your system, FreeCAD will be able to handle importing and exporting in the Collada file format.

Installation

Pycollada is usually not yet available in linux distributions repositories, but since it is made only of python files, it doesn't require compilation, and is easy to install. You have 2 ways, or directly from the official pycollada git repository, or with the easy_install tool.

Linux

In either case, you'll need the following packages already installed on your system:

python-lxml 
python-numpy
python-dateutil
From the git repository
git clone git://github.com/pycollada/pycollada.git pycollada
cd pycollada
sudo python setup.py install
With easy_install

Assuming you have a complete python installation already, the easy_install utility should be present already:

easy_install pycollada

You can check if pycollada was correctly installed by issuing in a python console:

import collada

If it returns nothing (no error message), then all is OK

Windows

  1. Install Python. While FreeCAD and some other programs come with a bundled version of Python, having a fixed install will help with the next steps. You can get Python here: https://www.python.org/downloads/ . Of course you should pick the right version, in this case that would be 2.6.X, as FreeCAD currently uses 2.6.2 (Personally I went with 2.6.2, and by the way, you can check the version yourself by starting the Python.exe in the bin folder of FreeCAD). You'll also have to add the path of the installation directory into the path variable so you can access Python from the cmd. Now we can install the missing things, in total there are 3 things we need to install: numpy, setuptools, pycollada
  2. Fetch numpy here: http://sourceforge.net/projects/numpy/files/NumPy/ . Pick a version which fits to the version used by FreeCAD, there are multiple installers for different Python versions in every numpy version folder, the installer will put numpy into the folder of your Python installation, where FreeCAD can access it as well
  3. Fetch setuptools here: https://pypi.python.org/pypi/setuptools (We need to install the setuptools in order to install pycollada in the next step)
  4. Unzip the downloaded setuptools file somewhere
  5. Start a cmd with admin permission
  6. Navigate to the unpacked setuptools folder
  7. Install the setuptools by tipping "Python setup.py install" into the cmd, this will not work when Python is not installed or when the path variable hasn't been configured
  8. Fetch pycollada here: https://pypi.python.org/pypi/pycollada/ (has already been posted above) and once again:
  9. Unzip the downloaded pycollada file somewhere
  10. Start a cmd with admin permission, or use the one you opened not long ago
  11. Navigate to the unpacked pycollada folder
  12. Install the setuptools by tipping "Python setup.py install" into the cmd

Mac OS

If you are using the Homebrew build of FreeCAD you can install pycollada into your system Python using pip.

If you need to install pip:

$ sudo easy_install pip

Install pycollada:

$ sudo pip install pycollada

If you are using a binary version of FreeCAD, you can tell pip to install pycollada into the site-packages inside FreeCAD.app:

$ pip install --target="/Applications/FreeCAD.app/Contents/lib/python2.7/site-packages" pycollada

IfcOpenShell

IFCOpenShell is a library currently in development, that allows to import (and soon export) Industry foundation Classes (*.IFC) files. IFC is an extension to the STEP format, and is becoming the standard in BIM workflows. When ifcopenshell is correctly installed on your system, the FreeCAD Arch Module will detect it and use it to import IFC files, instead of its built-in rudimentary importer. Since ifcopenshell is based on OpenCasCade, like FreeCAD, the quality of the import is very high, producing high-quality solid geometry.

Installation

Since ifcopenshell is pretty new, you'll likely need to compile it yourself.

Linux

You will need a couple of development packages installed on your system in order to compile ifcopenshell:

liboce-*-dev
python-dev
swig

but since FreeCAD requires all of them too, if you can compile FreeCAD, you won't need any extra dependency to compile IfcOpenShell.

Grab the latest source code from here:

svn co https://ifcopenshell.svn.sourceforge.net/svnroot/ifcopenshell ifcopenshell

The build process is very easy:

mkdir ifcopenshell-build
cd ifcopenshell-build
cmake ../ifcopenshell/cmake

or, if you are using oce instead of opencascade:

cmake -DOCC_INCLUDE_DIR=/usr/include/oce ../ifcopenshell/cmake 

Since ifcopenshell is made primarily for Blender, it uses python3 by default. To use it inside FreeCAD, you need to compile it against the same version of python that is used by FreeCAD. So you might need to force the python version with additional cmake parameters (adjust the python version to yours):

cmake -DOCC_INCLUDE_DIR=/usr/include/oce -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/python2.7.so ../ifcopenshell/cmake

Then:

make
sudo make install

You can check that ifcopenshell was correctly installed by issuing in a python console:

import IfcImport

If it returns nothing (no error message), then all is OK

Windows

Copied from the IfcOpenShell README file

Users are advised to use the Visual Studio .sln file in the win/ folder. For Windows users a prebuilt Open CASCADE version is available from the http://opencascade.org website. Download and install this version and provide the paths to the Open CASCADE header and library files to MS Visual Studio C++.

For building the IfcPython wrapper, SWIG needs to be installed. Please download the latest swigwin version from http://www.swig.org/download.html . After extracting the .zip file, please add the extracted folder to the PATH environment variable. Python needs to be installed, please provide the include and library paths to Visual Studio.

Teigha Converter

The Teigha Converter is a small freely available utility that allows to convert between several versions of DWG and DXF files. FreeCAD can use it to offer DWG import and export, by converting DWG files to the DXF format under the hood,then using its standard DXF importer to import the file contents. The restrictions of the DXF importer apply.

Installation

On all platforms, only by installing the appropriate package from http://www.opendesign.com/guestfiles/TeighaFileConverter . After installation, if the utility is not found automatically by FreeCAD, you might need to set the path to the converter executable manually, in the menu Edit -> Preferences -> Draft -> Import/Export options.

Localisation
Source documentation