mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-18 10:47:31 -08:00
16 lines
628 B
Bash
16 lines
628 B
Bash
#!/bin/bash
|
|
# https://github.com/starr-dusT/dotfiles
|
|
|
|
# Install cadquery
|
|
sudo pacman -S python python-pip
|
|
pip install cadquery --break-system-packages
|
|
curl -LO https://github.com/CadQuery/CQ-editor/releases/download/nightly/CQ-editor-master-Linux-x86_64.sh
|
|
sh CQ-editor-master-Linux-x86_64.sh
|
|
rm CQ-editor-master-Linux-x86_64.sh
|
|
|
|
# Install dependencies for Simplify3d
|
|
sudo pacman -S fontconfig
|
|
sudo pacman -S $(pacman -Ssq xcb)
|
|
sudo pacman -S $(pacman -Ssq xorg)
|
|
echo "The joys of using proprietary software... you need to install Simplify3d with the script from their website (https://cloud.simplify3d.com/account/downloads)"
|