input-wacom | Linux kernel driver for Wacom devices

 by   linuxwacom C Version: v1.0.0 License: GPL-2.0

kandi X-RAY | input-wacom Summary

kandi X-RAY | input-wacom Summary

input-wacom is a C library. input-wacom has no bugs, it has no vulnerabilities, it has a Strong Copyleft License and it has low support. You can download it from GitHub.

The Linux Wacom Project manages the drivers, libraries, and documentation for configuring and running Wacom tablets under the Linux operating system. The project consist of this driver (input-wacom), xf86-input-wacom and libwacom. Our drivers are included in most major Linux distributions and provide out-of-the box support for a wide variety of Wacom tablets and component devices. Given this, you will only need this driver if you have a newer Wacom device, are running an older operating system, or need a bugfix. If one of these situations applies to you, install input-wacom from source by following the instructions in our wiki.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              input-wacom has a low active ecosystem.
              It has 531 star(s) with 49 fork(s). There are 21 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 14 open issues and 286 have been closed. On average issues are closed in 220 days. There are 2 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of input-wacom is v1.0.0

            kandi-Quality Quality

              input-wacom has no bugs reported.

            kandi-Security Security

              input-wacom has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              input-wacom is licensed under the GPL-2.0 License. This license is Strong Copyleft.
              Strong Copyleft licenses enforce sharing, and you can use them when creating open source projects.

            kandi-Reuse Reuse

              input-wacom releases are available to install and integrate.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of input-wacom
            Get all kandi verified functions for this library.

            input-wacom Key Features

            No Key Features are available at this moment for input-wacom.

            input-wacom Examples and Code Snippets

            No Code Snippets are available at this moment for input-wacom.

            Community Discussions

            QUESTION

            Ubuntu 18.04 libosmesa6 depends libglapi-mesa (= 18.0.0~rc5-1ubuntu1) but 18.0.5-0ubuntu0~18.04.1 is to be installed
            Asked 2018-Sep-06 at 19:01

            Quite a few people encounter this issue, especially those who want to use Gym and Mujoco for reinforcement learning. The installation process is frustrating, but luckily some people spot part of the issue

            I want to post this problem, so hopefully the Ubuntu developers could see, as the instruction doesn't lead me to any dialog box to write something.

            The problem is happened as followed:

            1. I want to use Mujoco, so I follow the installation instruction, but when I implement import mujoco_py in python3.5/3.6, it gives the following error:

              >>> import mujoco_py

              Import error. Trying to rebuild mujoco_py.

              running build_ext building 'mujoco_py.cymj' extension

              ...

              /home/username/.local/lib/python3.6/site-packages/mujoco_py/gl/osmesashim.c:1:10: fatal error: GL/osmesa.h: No such file or directory #include ^~~~~~~~~~~~~

            2. Quite a few people suggest to install libosmesa-dev by running sudo apt-get install libosmesa6-dev, so I tried it. But the error is:

              The following packages have unmet dependencies: libosmesa6-dev : Depends: libosmesa6 (= 18.0.0~rc5-1ubuntu1) but it is not going to be installed E: Unable to correct problems, you have held broken packages.

            3. Then I think this sudo apt-get install libosmesa6 would solve it, but unfortunately:

              The following packages have unmet dependencies: libosmesa6 : Depends: libglapi-mesa (= 18.0.0~rc5-1ubuntu1) but 18.0.5-0ubuntu0~18.04.1 is to be installed E: Unable to correct problems, you have held broken packages.

            4. It looks like it's the version of current libglapi-mesa (18.0.5-0ubuntu0~18.04.1) is incompatible with what mesa really needs(18.0.0~rc5-1ubuntu1)

            5. I am confused about how to downgrade it, because it seems like there are tons of packages depending on the current version of libglapi-mesa. For example, when I tried to correct the version, using sudo apt-get install libglapi-mesa=18.0.0~rc5-1ubuntu1 , the warning is going crazy:

              The following additional packages will be installed: policykit-1-gnome The following packages will be REMOVED: apturl cheese deja-dup gdm3 gir1.2-gst-plugins-base-1.0 gir1.2-mutter-2 gir1.2-rb-3.0 gir1.2-totem-1.0 gir1.2-webkit2-4.0 gnome-calendar gnome-control-center gnome-getting-started-docs gnome-initial-setup gnome-online-accounts gnome-session-bin gnome-shell gnome-startup-applications gnome-todo gnome-user-docs gnome-user-guide gstreamer1.0-clutter-3.0 gstreamer1.0-gl gstreamer1.0-vaapi gvfs gvfs-backends gvfs-daemons gvfs-fuse libcheese-gtk25 libcheese8 libclutter-1.0-0 libclutter-gst-3.0-0 libclutter-gtk-1.0-0 libcogl-pango20 libcogl-path20 libcogl20 libedataserverui-1.2-2 libgl1 libgl1-mesa-glx libglu1-mesa libglx-mesa0 libglx0 libgoa-backend-1.0-1 libgstreamer-gl1.0-0 libmutter-2-0 libtotem0 libwebkit2gtk-4.0-37 libyelp0 mutter nautilus nautilus-share rhythmbox-plugins shotwell totem totem-plugins ubuntu-desktop ubuntu-docs ubuntu-release-upgrader-gtk ubuntu-session update-manager update-notifier x11-utils xorg xserver-xephyr xserver-xorg xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-libinput xserver-xorg-input-wacom xserver-xorg-video-all xserver-xorg-video-amdgpu xserver-xorg-video-ati xserver-xorg-video-fbdev xserver-xorg-video-intel xserver-xorg-video-nouveau xserver-xorg-video-qxl xserver-xorg-video-radeon xserver-xorg-video-vesa xserver-xorg-video-vmware xwayland yelp zenity

            6. Now when I looked back to the Ubuntu 18.04 USB installation driver, I noticed that the version of current libglapi-mesa (18.0.5-0ubuntu0~18.04.1) is already there (pre-installed) on this Ubuntu 18.04 version. I am a newbie to Ubuntu, I already reinstall the system for few times due to following different people's post. I really hope Ubuntu team or MESA team could fix this issue soon. If you know how to solve this (other than install Ubuntu 14/16), please leave your comment, I really appreciate it!

            ...

            ANSWER

            Answered 2018-Sep-06 at 19:01

            I am very new to Ubuntu, knowing nothing about it, so my question looks a bit dump. But here is how I solved it for my situation when I could not proper install libosmesa6-dev due to package dependency:

            1 Try to google libosmesa6=18.0.5-rc5-0ubuntu0, download the deb file for your Ubuntu version, and cpu architecture(e.g. my case 0ubuntu0~18.04.1 (amd64 binary)), and install it manually. This is because in the current package repository, there is no libsomesa6=18.0.5-rc5-0ubuntu0 to match libglapi-mesa=18.0.5...

            2 Now, I add repository for newer version of libosmesa6-dev to my repository, and install it with apt-get command:

            sudo add-apt-repository ppa:ubuntu-x-swat/updates

            sudo apt-get update

            sudo apt-get install libosmesa6-dev

            After this, the libosmesa6-dev, libosmesa6, libglapi-mesa would be automatically upgraded to a newer version.

            3 Once it's installed, I have no issue to import mujoco_py under my environment

            Source https://stackoverflow.com/questions/52158575

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install input-wacom

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries

            Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link