Mudanças entre as edições de "Impressora 3D"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Linha 33: Linha 33:
 
<source lang="bash">
 
<source lang="bash">
 
sudo apt-get install freecad
 
sudo apt-get install freecad
 +
</source>
 +
 +
== Instalando Cura ==
 +
 +
<source lang="bash">
 +
sudo add-apt-repository ppa:thopiekar/cura
 +
sudo apt update
 +
sudo apt install cura
 +
</source>
 +
 +
 +
== Instalando  Repetier Host ==
 +
 +
<source lang="bash">
 +
sudo apt install monodevelop libmono-system-serviceprocess4.0-cil
 +
</source>
 +
 +
Baixando e descompactando
 +
<source lang="bash">
 +
tar xf repetierHostLinux_1_6_2.tgz
 +
cd RepetierHost
 +
</source>
 +
 +
Rodando
 +
<source lang="bash">
 +
mono RepetierHost.exe
 
</source>
 
</source>
  

Edição das 14h32min de 21 de julho de 2018

Em Ubuntu 16.04

Instalando Pronterface

Dependências via apt

sudo apt install python3-appdirs python3-psutil python3-serial cython3 python3-numpy git python3-dev \
python-libxml2 python3-pip libsdl1.2debian python3-gi python3-dbus

Dependências via pip3

sudo pip3 install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 wxPython
sudo pip3 install pyglet

Baixando o código e rodando

git clone https://github.com/kliment/Printrun.git
cd Printrun/
python3 setup.py build_ext --inplace
./pronterface.py

Instalando Slic3r

sudo apt install slic3r

Instalando Frecad

sudo apt-get install freecad

Instalando Cura

sudo add-apt-repository ppa:thopiekar/cura
sudo apt update
sudo apt install cura


Instalando Repetier Host

sudo apt install monodevelop libmono-system-serviceprocess4.0-cil

Baixando e descompactando

tar xf repetierHostLinux_1_6_2.tgz
cd RepetierHost

Rodando

mono RepetierHost.exe

Referências