Printrun consists of printcore, pronsole and pronterface, and a small collection of helpful scripts.
This section suggests using precompiled binaries, this way you get everything bundled into one single package for an easy installation.
If you want the newest, shiniest features, you can run Printrun from source using the instructions further down this README.
A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/
A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/
Some distributions require the user to be added to the '''dialout''' group, otherwise access to the USB-Serial port is blocked (resulting in the inability to connect to the printer).
You can run Printrun directly from source, as there are no packages available yet. Fetch and install the dependencies using
sudo apt-get install python-serial python-wxgtk2.8 python-pyglet python-urlgrabber
You can run Printrun directly from source, as there are no packages available yet. Fetch and install the dependencies using
sudo yum install pyserial wxpython pyglet
Packages are available in AUR. Just run
yaourt printrun
and enjoy the pronterface
, pronsole
, ... commands directly.
When you're done setting up Printrun, you can start pronterface.py in the directory you unpacked it. Select the port name you are using from the first drop-down, select your baud rate, and hit connect. Load an STL (see the note on skeinforge below) or GCODE file, and you can upload it to SD or print it directly. The "monitor printer" function, when enabled, checks the printer state (temperatures, SD print progress) every 3 seconds. The command box recognizes all pronsole commands, but has no tabcompletion.
If you want to load stl files, you need to install a slicing program such as Slic3r and add its path to the settings. See the Slic3r readme for more details on integration.
To run the web interface, install Cherrypy and run Pronterface as described above. The www server will start on the port/address you have chosen.
Cherrypy is required for the web interface. Download and install it by opening a command prompt in its directory and running python setup.py install.
To use pronsole, you need:
Start pronsole and you will be greeted with a command prompt. Type help to view the available commands. All commands have internal help, which you can access by typing "help commandname", for example "help connect"
If you want to load stl files, you need to put a version of skeinforge (doesn't matter which one) in a folder called "skeinforge". The "skeinforge" folder must be in the same folder as pronsole.py
To use printcore you need python (ideally 2.6.x or 2.7.x) and pyserial (or python-serial on ubuntu/debian) See pronsole for an example of a full-featured host, the bottom of printcore.py for a simple command-line sender, or the following code example:
p=printcore('/dev/ttyUSB0',115200)
p.startprint(data) # data is an array of gcode lines
p.send_now("M105") # sends M105 as soon as possible
p.pause()
p.resume()
p.disconnect()
Run Printrun for source if you want to test out the latest features.
To use pronterface, you need:
Please see specific instructions for Windows and Mac OS X below. Under GNU/Linux, you should use your package manager directly (see the "GETTING PRINTRUN" section)
Download the following, and install in this order:
For the last one, you will need to unpack it, open a command terminal,
go into the the directory you unpacked it in and run
python setup.py install
brew uninstall python
or other appropriate incantations)sudo python setup.py install
The tools will probably run just fine in 64bit on Lion, you don't need to mess with any of the 32bit settings. In case they don't, try
A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/
Unzip pyserial to a folder. Then, in a terminal, change to the folder you unzipped to, then type in:
defaults write com.apple.versioner.python Prefer-32-Bit -bool yes
sudo python setup.py install
Alternatively, you can run python in 32 bit mode by setting the following environment variable before running the setup.py command:
This alternative approach is confirmed to work on Mac OS X 10.6.8.
export VERSIONER_PYTHON_PREFER_32_BIT=yes
sudo python setup.py install
Then repeat the same with http://http://pyglet.googlecode.com/files/pyglet-1.1.4.zip
Printrun is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Printrun is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Printrun. If not, see <http://www.gnu.org/licenses/>.
All scripts should contain this license note, if not, feel free to ask us. Please note that files where it is difficult to state this license note (such as images) are distributed under the same terms.