Package Details: klipper-git r4940.e2d7c5981-1

Git Clone URL: https://aur.archlinux.org/klipper-git.git (read-only, click to copy)
Package Base: klipper-git
Description: 3D printer firmware with motion planning on the host
Upstream URL: https://www.klipper3d.org/
Licenses: GPL3
Conflicts: klipper
Provides: klipper
Submitter: jade1
Maintainer: dack
Last Packager: dack
Votes: 4
Popularity: 0.000063
First Submitted: 2018-10-19 05:10 (UTC)
Last Updated: 2023-03-21 07:03 (UTC)

Dependencies (19)

Required by (1)

Sources (4)

Pinned Comments

dack commented on 2023-03-21 07:14 (UTC)

Please switch to using klipper-git. As of now, it is fully up to date with this package. All future updates will go into klipper-git, and I will be removing this package.

dack commented on 2023-03-21 07:13 (UTC)

I have updated this package to use python 3. If you are currently using klipper-py3-git, please switch to using this package instead. It's now fully up to date. All future updates will go here and I will be removing klipper-py3-git at some point.

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

plutonium commented on 2020-01-08 09:38 (UTC) (edited on 2020-01-08 10:22 (UTC) by plutonium)

I just updated klipper and am unable to connect from octoprint.

[Errno 2] could not open port /run/klipper/sock: [Errno 2] No such file or directory: '/run/klipper/sock'' @ comm.py:_openSerial:2661 (hook default)

Your latest instructions tells to use /tmp/printer, but I don't have it on my system... and according to klipper.service listed in sources, the socket is still /run/klipper/sock (and it exists indeed on my RPi)...

[edit] I got it to work with /run/klipper/sock

loredan13 commented on 2020-01-07 19:30 (UTC) (edited on 2021-05-22 22:38 (UTC) by loredan13)

README

Packages python2-pyserial and python2-greenlet were removed from [community] repository and due to bug in AURweb I couldn't create an AUR package for those, so you'll have to install those manually. Here are links to PKGBUILD files for those packages:

https://gist.githubusercontent.com/loredan/ec63324205d778d7d3c912533d8cd8df/raw/f43980a8cc1f29a8837746aaf52361e7fcd477e7/PKGBUILD

https://gist.githubusercontent.com/loredan/be4e00b51881a1494b93382334b13640/raw/c796a6fba98e415bcd06cf53e664bafb26f785ef/PKGBUILD

After you have this package installed, copy an example config from /opt/klipper/config to /etc/klipper/klipper.cfg and adjust the values to suit your printer.

If needed, build and flash firmware as outlined in the documentation: https://github.com/KevinOConnor/klipper/blob/master/docs/Installation.md#building-and-flashing-the-micro-controller keeping in mind that klipper is placed in /opt/klipper directory

Then, start/enable the klipper service with systemctl.

Logs can be seen at /var/log/klipper/klippy.log

OctoPrint

Use the socket /run/klipper/sock. OctoKlipper is highly recommended.

WARNING

If you have ARM MCU on your printer you won't be able to compile firmware on ARM PC (which is the case for most computers running klipper). You will have to compile firmware on x86_64 PC

loredan13 commented on 2020-01-07 18:04 (UTC)

dack: the problem is with compiling ARM MCU firmware, it requires arm-none-eabi-gcc package, which is only for x86_64 architecture, and I still haven't found an alternative.

I have adopted the package, and I will try to update it as much as I can

dack commented on 2020-01-05 21:32 (UTC)

Deathwarror: Are you talking about requirements to compile the PKGBUILD, or to compile AVR microcontroller firmware?

If you are talking about the PKGBUILD, gcc and make are part of base-devel. That should not be listed as a dependency in the PKGBUILD as per the wiki page for Makepkg ("Before continuing, install the base-devel group. Packages belonging to this group are not required to be listed as build-time dependencies (makedepends) in PKGBUILD files.").

If you are talking about compiling the AVR microcontroller code, avr-gcc is already listed as a runtime dependency. Make is not listed, and should perhaps be added as a runtime dependency. Most people will probably not encounter that issue, since they would have already installed base-devel (and therefore make) in order to compile the PKGBUILD.

jade1 commented on 2020-01-04 21:16 (UTC)

Hi! Unfortunately I don't use Klipper anymore so I'm relinquishing maintainership of this package. If anyone wishes to adopt it, that would be fantastic.

I should have done this a long time ago, and I'm sorry for procrastinating flagging this unmaintained package as unmaintained.

Deathwarror commented on 2020-01-04 18:30 (UTC)

I'm using a raspberry pi 4. Two more dependencies that are needed are gcc and make gcc is apparently needed by the klipper code to compile

dack commented on 2020-01-04 05:12 (UTC)

Can you add a dependency for python2-jinja? Without it, klipper fails with the following in the log:

Unhandled exception during connect Traceback (most recent call last): File "/opt/klipper/klippy/klippy.py", line 134, in _connect self._read_config() File "/opt/klipper/klippy/klippy.py", line 129, in _read_config m.add_printer_objects(config) File "/opt/klipper/klippy/toolhead.py", line 567, in add_printer_objects
config.get_printer().add_object('toolhead', ToolHead(config)) File "/opt/klipper/klippy/toolhead.py", line 262, in init self.printer.try_load_module(config, "idle_timeout") File "/opt/klipper/klippy/klippy.py", line 116, in try_load_module self.objects[section] = init_func(config.getsection(section)) File "/opt/klipper/klippy/extras/idle_timeout.py", line 113, in load_config return IdleTimeout(config) File "/opt/klipper/klippy/extras/idle_timeout.py", line 24, in init gcode_macro = self.printer.try_load_module(config, 'gcode_macro') File "/opt/klipper/klippy/klippy.py", line 110, in try_load_module mod = importlib.import_module('extras.' + module_name) File "/usr/lib/python2.7/importlib/init.py", line 37, in import_module import(name)
File "/opt/klipper/klippy/extras/gcode_macro.py", line 7, in <module> import jinja2
ImportError: No module named jinja2

Psych0d0g commented on 2019-09-01 15:26 (UTC)

could you add aarch64 to the architectures supported so we can use this pkg on raspi3 with the a4a rpi3 image?

jade1 commented on 2018-10-28 14:43 (UTC)

@breadman indeed that is a mistake on my part. The reason it was moved was because I wanted to privilege separate OctoPrint from Klipper. But /tmp/printer, being in a setuid directory, can't be followed by non owner users.

The socket is at /run/klipper/sock.

breadman commented on 2018-10-28 13:00 (UTC)

For some reason I do not have /tmp/printer. After flashing the MCU klipper is communicating with the printer but there's no symlink.

I think this began after yesterday's update as I tried this package two days ago and everything seemed to work fine. Now this happens both in virtualbox and on a physical machine. I do not see any warnings in klippy's log, nothing regarding /tmp/printer in journald.

I'm using Manjaro and not Arch, but I don't think this should be a problem. Any suggestions in which direction to look?