failing to install kivy in ubuntu - python-3.x

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-19ocdenh/kivy/
is the error code I get when I try to install kivy on a virtual env or globally on my machine. What does it mean? How do I resolve this? Other packages like django, numpy all went nicely, but, kivy doesn't. I've checked and marked all the dependencies listed on the main installation site, including stuff like Cython, but It does't budge.

Related

How to install audiodiff?

So i am trying to install audiodiff via anaconda prompt. The error i keep getting is related to mutagen. But i have installed mutagenwrapper and mutagen and its their installation that i think is causing the issue has anyone else had that issue and solved it?
The error I get is command "python setup.py egg info" failed with error code 1 in C:\Users\TEST\AppData\Local\Temp\pip-install-0rsg6wwr\mutagen\
However if i try to install mutagen it just says requirement already satisfied.
It is only supported in python 2.7

PyCharm doesn't Splunk SDK (splunklib)

I have a simple python script that calls the Splunk API. For this, I include splunklib:
"import splunklib.client as client"
This script works very well, when I start it from a terminal window (MacOS): python3 main.py
For this, I had to install splunklib using "pip3 install splunklib".
Unfortunately I can't run the same script out of Pycharm.
I also successfully installed splunklib under settings/Project Interpreter/Package. splunklib is shown in the list of installed packages for the Project Interpreter (splunklib 1.0.0, Python 3.7).
When I run the script using Pycharm, I get the following error message:
import splunklib.client as client
ModuleNotFoundError: No module named 'splunklib.client'; 'splunklib' is not a package
Why can Pycharm not find Esplunklib, even though it's installed in the Project Interpreter?
I had this same issue today, and tried to resolve it the same as you by doing a pip3 install splunklib. Unfortunately, the splunklib package is not the one you want. I'm not sure if that is a deprecated package, or something else entirely, but what you're probably looking for is the splunk-sdk.
This should get you going; pip3 install splunk-sdk

PyMesh Installation on Python 3.6 Windows

I am trying to install Pymesh on Python 3.6.
In my first try, I installed through pip, however it installed a wrong PyMesh than I wanted.
It installed the following, https://pypi.org/project/pymesh/, while I wanted https://pymesh.readthedocs.io/en/latest/
I uninstalled it, and tried installing the later PyMesh, however no luck. There were no instructions for windows. I downloaded the source from github. I extracted and pasted it in C:\Python36\Lib\site-packages
Then I ran python3 setup.py build - when an error showed up, I also tried python3 setup.py install, which worked. However, I am unable to do a simple basic command mentioned in the web page: https://pymesh.readthedocs.io/en/latest/basic.html
It is saying pymesh does not have module name load_mesh.
Looking for the process or thoughts on how to properly install pyMesh for Windows.
My go to solution for problems like this on Windows is always to try it in a conda env first. If that fails, use Docker.

installing fastkde library in Python

I want to install fastkde library and I did actually everything on web but I am yet able to install this. I constantly get this error in terminal:
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-4ff4dzcb/fastkde/
Can anybody help me with this?
If you've pip installed which is true for all distributions downloaded from here, then just key in the commands in your terminal given below.
pip3 install fastkde

unable to install some python modules

I am working on windows 8.1 .When i try to install some python(python 3.4) modules and packages like IMDBPY using pip :
pip install imdbpy
I get the following error code:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\ISHAN~1.
NIT\AppData\Local\Temp\pip-build-uyc40bdk\imdbpy.
This same error message is occurring with many python modules and packages.
Although i have checked other similar questions on stack overflow but they could not solve my problem.

Resources