The DWG format is a closed source binary file format that is not directly supported by FreeCAD. It requires an external 3rd party file converter to convert DWG files to DXF files, and vice-versa.
GNU LibreDWG is a free C library to handle DWG files. It aims to be a free replacement for the Open Design Alliance Drawings SDK libraries. Be aware that, since libreDWG is a work-in-progress, it lacks support for some DWG entities.
Downloading and unzip the appropriate pre-compiled Windows binary. Place the executable in the OS search path, os.getenv("PATH"), for automatic detection (introduced in 0.21), or set the path manually. See Import Export Preferences.
git clone --recurse-submodules https://git.savannah.gnu.org/git/libredwg.git
cd libredwg
mkdir build
cd build
cmake ..
make
make install # or use checkinstall, or simply locate & copy the dwg2dxf
# utility to your executables path, it will be then autodetected by FreeCAD
Place the executable in the OS search path, os.getenv("PATH"), for automatic detection (introduced in 0.21), or set the path manually. See Import Export Preferences.
To prevent problems you must use LibreDWG package compiled for the installed openSUSE OS distribution. LibreDWG is typically installed with YAST (abbr. Yet another Setup Tool), the Linux operating system's setup and configuration tool.
The more experienced user first gets an overview of possible packages provided. Note: openSUSE has several options to choose from when downloading LibreDWG. To view these options, visit Survey of provided LibreDWG packages on openSUSE.
For e.g. Intel or AMD 64-bit desktops, laptops, and servers the (x86_64) release is the one to select. So libredwg0 and libredwg-tools are of the right choice to install.
It is recommended to grab the binary packages directly. Then select the correct distribution for your installed openSUSE OS.
In any terminal/console (root rights required) the installation will be carried out with:
zypper install libredwg0 libredwg-tools
Place the executable in the OS search path, os.getenv("PATH"), for automatic detection (introduced in 0.21), or set the path manually. See Import Export Preferences.
MacOS compilation installation has been tested on an Apple M1 running MacOS 26.3.1 (Tahoe) and Homebrew.
The script below can be used to automate download, configuration and installation once you have Homebrew installed. It requires git which may have come pre-installed with your MacOS, or been installed by Command Line Tools:
#!/bin/bash
# prerequisites:
# - autoconf: brew install autoconf
# - texinfo: brew install texinfo
which autoconf
Depending on your MacOS version and machine architecture the following binaries will become available at either /opt/homebrew/bin or /usr/local/bin:
#$> cd /opt/homebrew/bin
#$> ls /opt/homebrew/bin/d{x,w}*
dxfwrite
dxf2dwg
dwgwrite
dwgrewrite
dwgread
dwglayers
dwggrep
dwgfilter
dwgbmp
dwgadd
dwg2dxf
dwg2SVG
To make it available in FreeCAD, provide the full path to the dwg2dxf binary under Preferences → Import-Export → DWG → Path to file converter.
The ODA File 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.
If the utility is not found automatically by FreeCAD after installation, you need to set the path to the executable manually. See Import Export Preferences.
QCAD Community Edition is a well-known open-source DXF-based 2D CAD platform. It also offers a paid pro version, which is basically the open-source version plus support for the DWG format and drafting functions. When buying the pro version, QCAD also includes a DWG to DXF conversion utility that can be used by FreeCAD.
If the utility is not found automatically by FreeCAD after installation (introduced in 0.21), you need to set the path to the bash file (Linux and macOS) or batch file (Windows) manually. See Import Export Preferences.
Installing the CADExchanger Workbench allows for working with DWG files through integration with the paid commercial file converter product CADExchanger. Just follow the instructions in the GitHub repository. You can discuss this workbench on its forum thread.
At the moment, the CADExchanger way is the only one that allows to work with 3D DWG files, by converting them to other 3D formats.
There is also DoubleCAD XT (https://www.turbocad.com/content/doublecad-xt-v5). The program is free for personal and commercial use. It requires a free sign-up to receive an activation code via E-Mail. This Program is windows-only. Note: it does not seem to have been updated for years.
There is also nanoCAD 5.0 (https://nanocad.com/products/nanoCAD/download/). The program is free for personal and commercial use. It requires a free sign-up to receive an activation code via E-Mail. This Program is windows-only.
Exporting your AutoCAD files in a more FreeCAD friendly format, like DXF R12 or R14, SVG, and if version supports it, IGES. All are better alternatives to the DWG format when using FreeCAD.
It is important to note that there is no difference between the contents of a file saved in DWG or DXF formats, provided it is the same version (ex. DWG 2014 vs. DXF 2014). Both formats are maintained by Autodesk, and they both support exactly the same features. The difference is that DWG is closed (machine-encoded) while DXF is open.
Simply put, stop accepting work done in DWG format. In practice, this is often easier said than done. Still, it would not be bad practice for users and supporters of FreeCAD to avoid and reject the DWG format whenever possible.
In development version as mentioned above you can switch from the proprietary ODA Converter to the free software LibreDWG library for DWG (and DXF) files. Please do this and report any problems you encounter.