6

I have downloaded my code from bit-bucket which was made by my group member. It contain all the frameworks and python script folder. But when I run this code on my system it generates the following error:

This program can't start because python27.dll is missing from your computer. Try reinstalling the program to fix this program

I have also downloaded and installed python 2.7 on my system but when I run it generates the same error.

Please tell me how can I fix this problem.

4
  • What OS and installation path..? Commented Mar 13, 2014 at 14:35
  • My Group Member OS Windows 8.1 (who made the code) My OS Windows 8 Both systems are same i-e 64 Bits. Version on my system 2.7.6 & my group member system is also 2.7.6 Commented Mar 13, 2014 at 16:19
  • Installation Path is C:/Python 27 My Code is cloned from bitbucket at C:/Folder Commented Mar 13, 2014 at 16:20
  • Well that all seems in order. Commented Mar 13, 2014 at 16:25

2 Answers 2

4

It's most probably a 32-bit or 64-bit issue. Try downloading proper version.

Sign up to request clarification or add additional context in comments.

2 Comments

My Group Member OS Windows 8.1 (who made the code) My OS Windows 8 Both systems are same i-e 64 Bit
Did you try fixing the PATH in environment variables?
3

I also got this error when I copied my python environment from one computer to another. Both computers were 64 bit and the installation was 64 bit. What happens is that python installer updates Microsoft registry. When I simply copied the python files, the registry did not get updated, of course, resulting in the dll file missing error message.

I solved it by installing the 64 bit version of python first on my target computer, and then did my copy of the environment, i.e. copied c:\pythonFromComputerA to target computer's c:\python27, effectively overwriting the python that had just been installed. But because the installer updated the registry, I could now run with my python environment on the target computer without getting the error message.

Thought I'd provide this in case others are out there scratching their heads, having correctly matching installation with OS yet getting this error message.

1 Comment

Had the same problem. This worked for me. Thank you!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.