I've been using and learning Python 3.3 for a while, with the Aptana IDE for Windows.
After some issues I've now managed to install a Kivy-package. The only way I can manage to run programs with Kivy, however, is to run the .py-files from the file manager (after assigning .py-files to Kivy).
When trying to run the files from Aptana it says
ImportError: No module named 'kivy'
Any guidance on how to make the Kivy-apps run from Aptana?
@qua-non The bat file looks like this:
@ECHO off
set kivy_portable_root=%~dp0
ECHO botstrapping Kivy @ %kivy_portable_root%
IF DEFINED kivy_paths_initialized (GOTO :runkivy)
ECHO Setting Environment Variables:
ECHO #################################
set GST_REGISTRY=%kivy_portable_root%gstreamer\registry.bin
ECHO GST_REGISTRY
ECHO %GST_REGISTRY%
ECHO ---------------
set GST_PLUGIN_PATH=%kivy_portable_root%gstreamer\lib\gstreamer-1.0
ECHO GST_PLUGIN_PATH:
ECHO %GST_PLUGIN_PATH%
ECHO ---------------
set PATH=%kivy_portable_root%;%kivy_portable_root%Python33;%kivy_portable_root%tools;%kivy_portable_root%Python33\Scripts;%kivy_portable_root%gstreamer\bin;%kivy_portable_root%MinGW\bin;%PATH%
ECHO PATH:
ECHO %PATH%
ECHO ----------------------------------
set PKG_CONFIG_PATH=%kivy_portable_root%gstreamer\lib\pkgconfig;%PKG_CONFIG_PATH%
set PYTHONPATH=%kivy_portable_root%kivy;%PYTHONPATH%
ECHO PYTHONPATH:
ECHO %PYTHONPATH%
ECHO ----------------------------------
SET kivy_paths_initialized=1
ECHO ##################################
:runkivy
ECHO done bootstraping kivy...have fun!\n
IF (%1)==() GOTO SHELL
ECHO running "python.exe %*" \n
python.exe %*
IF %errorlevel% NEQ 0 (PAUSE)
GOTO END
:SHELL
ECHO.
ECHO -----------------------------------------------------------------------
ECHO - Running a shell, you can browse kivyexamples and launch apps with: -
ECHO - python app.py -
ECHO -----------------------------------------------------------------------
ECHO.
cmd
:END
Can you advise on which paths that needs to be copied into the IDE settings?