Install kivy on portable python

I am trying to install kivy in my portable python using this installer: http://www.lfd.uci.edu/~gohlke/pythonlibs/#kivy (Its a precompiled version of kivy)

When executing the file, it says β€œPython version 2.7 is required,” but since the python im version uses the portable version, I assume this is normal.

So my question is: is there a desktop for installing a precompiled package in portable python? . How to register a portable python installation somehow?

Additional information (possibly ordinary):

My assumption is to register portable python in the system (Windows 7 64), but I already tried changing the "path" enviroiment variable to indicate all the required python paths without success.

I cannot use kivy modules to install it, compiling it on my computer because it is too complicated for me (cython does not work, or another of 7 different modules will give me problems until I destroy my python installation. I already destroyed my previous installation of python at the same time, and had to reinstall windows to work python -_- again

That's why I want to migrate to a portable python, but if this is not possible, I just go back to a regular python and install a kiwi on it ...

+4
source share
2 answers

Double-click the kivy.bat file.

You will have a console in which easy_install and pip are available. The compiler is configured on Mingw, and cython is already installed. Everything will be installed in a portable installation, not in your system.

Enjoy :)

Note. If you want to see how we do this, simply edit the kivy.bat file.

+1
source

The Kivy package on windows includes a portable python installation with Kivy installed.

+3
source

Source: https://habr.com/ru/post/1491290/


All Articles