Impressora 3D: mudanças entre as edições

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Criou página com ' == Referências == * http://www.impressao3dfacil.com.br/'
 
Sem resumo de edição
Linha 1: Linha 1:
Em Ubuntu 16.04
== Instalando Pronterface ==
Dependências via apt
<source lang="bash">
sudo apt install python3-appdirs python3-psutil python3-serial cython3 python3-numpy git libpython3-dev python-libxml2
</source>
Dependências via pip3
<source lang="bash">
sudo pip3 install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 wxPython
sudo pip3 install pyglet
</source>
Baixando o código e rodando
<source lang="bash">
git clone https://github.com/kliment/Printrun.git
cd Printrun/
python3 setup.py build_ext --inplace
./pronterface.py
</source>
verificar a necessidade de python3-gi python3-dbus python3-cairosvg python-gobject
== Instalando Slic3r ==
<source lang="bash">
sudo apt install slic3r
</source>
== Instalando Frecad ==
<source lang="bash">
sudo apt-get install freecad
</source>


== Referências ==
== Referências ==
* http://www.impressao3dfacil.com.br/
* http://www.impressao3dfacil.com.br/

Edição das 23h59min de 19 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 libpython3-dev python-libxml2

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

verificar a necessidade de python3-gi python3-dbus python3-cairosvg python-gobject

Instalando Slic3r

sudo apt install slic3r

Instalando Frecad

sudo apt-get install freecad

Referências