Python Taking a very long to start

Asked By 60 points N/A Posted on -
qa-featured

Hi friends

I am new to Python programming.

I have installed latest version of Python, still its taking a very long time to start.

How do i embed Python into a windows application?

Thanks

SHARE
Answered By 5 points N/A #106986

Python Taking a very long to start

qa-featured

Hi Aldrin, the most probable issue to slowing of the Python software in your system is most probably the operating system of your computer. You may not have the necessary requirements for the Python software in your system. Another problem may be the .dll files such as the Python.dll which may be missing.

Here is what you can do as a solution;

Launch command prompt and type the following;

C:JereProjectsPython>

The Python scripts need to be processed by a program known as a 'Python interpreter'

Make sure the command window recognizes the word 'python' as an instruction to start the interpreter.

If you have open the command window, enter word 'python' and hit 'enter'

This is what it shows;

Python 2.2 (#28, Dec 21 2001, 12:21:22) [MSC 32 bit (Intel)] on win32

Type "help", "copyright", "credits" or "license" for more information.

>>>

Python runs as a windows application in this format

Thanks

Related Questions