56 lines
699 B
Markdown
56 lines
699 B
Markdown
# LeoCAD
|
|
|
|
## Tested with
|
|
|
|
* Linux Mint 21.3 Cinnamon
|
|
* LeoCAD Version 23.03
|
|
|
|
## Installation
|
|
|
|
```shell
|
|
sudo apt update
|
|
```
|
|
|
|
```shell
|
|
sudo apt install -y leocad ldraw-parts
|
|
|
|
```
|
|
|
|
### Optional
|
|
|
|
```shell
|
|
sudo apt install -y povray
|
|
|
|
```
|
|
|
|
## Installation from source
|
|
|
|
```shell
|
|
sudo apt-get install qtbase5-dev qttools5-dev-tools libqt5opengl5-dev zlib1g-dev
|
|
```
|
|
|
|
```shell
|
|
git clone https://github.com/leozide/leocad.git
|
|
cd leocad
|
|
```
|
|
|
|
```shell
|
|
qmake leocad.pro
|
|
make
|
|
sudo make install
|
|
```
|
|
|
|
## Removal
|
|
|
|
```shell
|
|
sudo apt autoremove -y --purge leocad ldraw-parts povray
|
|
```
|
|
|
|
## Removal when installed from source
|
|
|
|
Open the "leocad" source code folder in a terminal window.
|
|
|
|
```shell
|
|
sudo make uninstall
|
|
```
|