Ошибка при установке python 2203

Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Ask Question

Asked
9 years, 7 months ago

Modified
9 years, 7 months ago

Viewed
1k times

0

While running the python installer for any version I suddenly get an error 2203 and it just doesn’t want to run. It closes after I press ok.

I have been seeing weird things happening lately with python like it closing when ctrl+z is pressed. or even not indenting with the tab key. This started after I installed ipython. Any suggestions on how I may be able to resolve this?

  • python

Improve this question

edited Nov 7, 2013 at 9:43

Matt Seymour's user avatar

Matt Seymour

8,8227 gold badges59 silver badges101 bronze badges

asked Nov 7, 2013 at 9:23

user2964020's user avatar

user2964020user2964020

11 bronze badge

2

  • If uninstalling ipython is an option, do it, then uninstall python too. Later reinstall ipython first.

    – shad0w_wa1k3r

    Nov 7, 2013 at 9:58

  • Is this the same issue with the temp folder as here? If so, try changing the permissions on the temp folder.

    – Henry Gomersall

    Nov 7, 2013 at 10:25

Add a comment
 | 

Related questions

2

Python installation on Windows failing

9

Error code 2755 when attempting to install Python 2.7.5 or 3.3.2

9

Python Windows 7 — Installation Fail 0x80240017

Related questions

2

Python installation on Windows failing

9

Error code 2755 when attempting to install Python 2.7.5 or 3.3.2

9

Python Windows 7 — Installation Fail 0x80240017

3

Failure to install Python win32 libraries?

2

Error when installing python

5

python 3.6.1 require windows 7 service pack 1 to install

0

windows 7 service pack 1 and all applicable updates are required to install Python 3.6.1

2

Error during the installation of Python

0

Issues while installing Python 3.6 on Windows 7 : Service Pack 1 is required to continue installation

0

Python 3.5x, 3.6x and 3.7x Install Fails on Windows 7 even with Universal C runtime updated

Load 7 more related questions

Show fewer related questions

Sorted by:

Reset to default

Your Answer

Sign up or log in

Sign up using Google

Sign up using Facebook

Sign up using Email and Password

Post as a guest

Name

Email

Required, but never shown

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

Browse other questions tagged

  • python

or ask your own question.

  • The Overflow Blog
  • Part man. Part machine. All farmer. 

  • Throwing away the script on testing (Ep. 583)

  • Featured on Meta
  • Statement from SO: June 5, 2023 Moderator Action

  • Starting the Prompt Design Site: A New Home in our Stack Exchange Neighborhood

  • Does the policy change for AI-generated content affect users who (want to)…

  • Temporary policy: Generative AI (e.g., ChatGPT) is banned

Hot Network Questions

  • Zener diodes conducting below threshold voltage

  • How do you read «10/10»?

  • Can you cast Prismatic Sphere when you are adjacent to a wall?

  • When designing antennas which speed of light should be used?

  • Coloring data points for different ranges

  • lualatex and pdflatex go into infinite loop on empty dmath environment

  • What is the legal basis for making servers pay for customers who walk out?

  • I did an Algebra on a vector equation and got what seems to be a contradiction.

  • Where are aeroplanes sent to if they are not be used for periods more than 3 years?

  • Using Set still showing duplicates

  • Compare new txt file with old txt file and remove all data that matches

  • What does a set of pencils contain when we know that pencils are not physically present in the set?

  • Can I check-in Carton Box on a Qantas Flight?

  • Considering that my Mac is usually on clamshell-mode, should I let it sleep always or should I shut it down?

  • Why does God promise Zedekiah a peaceful death?

  • Difference between program and application

  • Convert lscpu output to row based format in excel/csv table format

  • How to justify the energy levels of a hydrogen atom heuristically?

  • Are Solars unkillable in a dead magic area or anti-magic field?

  • How did they swim below the sea without any gear in The Abyss?

  • XOR of independent Bernoulli variables

  • Could you use Muons as electricity (or rather muontricity)?

  • How Would a Spacefaring Civilization Using No Electricity Communicate?

  • Elegant recursion for A301897

more hot questions

Question feed

Your privacy

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Problem is access to default %temp% folder in your profile

Ok, this has to do with access to your temp file location. As with many, the temp folder permissions get jacked up with spyware/adware etc…

Workaround
open a command prompt (cmd.exe) (with admin permissions if not logged on as admin)

  1. create a new folder for the installers and copy install files to a folder
    c:>md c:installers
    c:>cd c:installers

copy the msi files there, with explorer or command line

  1. make a new directory: Example:
    md c:temp

  2. set the temp folder location to the new temp folder
    set temp=c:temp

  3. type the installer .msi in the command line

python-2.6.6.msi

and press enter

That should fix the install problem, but for the problem with the %temp% folder, use spy or adware remover and virus scanner, or just create a new profile.

hope this helps.

wrong description

The installer has encounted an unexcepted error install this package. This may indicate a problem with this package. The error code is 2203/2503/2503.

Official definition

2203 Database: [2]. Cannot open database file. System error [3].
2502 Called InstallFinalize when no install in progress.
2503 Called RunScript when not marked in progress.

possible reason

The folder to be operated does not exist (2203) Insufficient permissions (2502, 2503)

specific reason

C:WindowsTEMPfolderBecause I was careless about the temporary file, it becameC:WindowsTEMPfile, The method of operating the folder cannot be applied to the file.

solve

  1. deleteC:WindowsTempFile and createC:WindowsTempfolder.
  2. Modify the operation permissions of the User user to this folder, and add modify and write permissions.

reference

  1. Windows Installer Error Code List

Created on 2011-02-12 18:47 by corenova, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg128449 — (view) Author: (corenova) Date: 2011-02-12 18:47
I'm running Windows 7 (32-bit) and I downloaded Python 2.7.1 Windows Installer but I can't install it. I get this message:
"The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2203."
msg128451 — (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2011-02-12 18:53
Can you confirm that the checksum and size of the file you downloaded matches what's on the site: http://www.python.org/download/releases/2.7.1/
msg128453 — (view) Author: (corenova) Date: 2011-02-12 18:56
Yes, I downloaded it from there.
msg128456 — (view) Author: (corenova) Date: 2011-02-12 19:10
I get the same message when trying to install older versions (2.x) as well as new 3.1.3
I also tried ActivePython and same thing happens.
msg128457 — (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2011-02-12 19:12
Are you perhaps trying to run the installer from a network folder, or some other location that needs your personal credentials for access?

Please run

   msiexec /i python-2.7.1.msi /l*v python.log

and attach the resulting python.log to this report (compress if it's too large).
msg148754 — (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2011-12-02 15:55
corenova, can you try what Martin said?
History
Date User Action Args
2022-04-11 14:57:12 admin set github: 55410
2013-01-23 09:17:25 ezio.melotti set status: pending -> closed
resolution: out of date
stage: resolved
2011-12-02 15:55:33 ezio.melotti set status: open -> pending
nosy:
+ ezio.melotti
messages:
+ msg148754
2011-02-12 19:12:27 loewis set nosy:
loewis, brian.curtin, corenova
messages:
+ msg128457
2011-02-12 19:10:42 corenova set nosy:
loewis, brian.curtin, corenova
messages:
+ msg128456
2011-02-12 18:56:47 corenova set nosy:
loewis, brian.curtin, corenova
messages:
+ msg128453
2011-02-12 18:53:33 brian.curtin set nosy:
+ brian.curtin
messages:
+ msg128451
components:
+ Windows
2011-02-12 18:52:56 pitrou set nosy:
+ loewis
2011-02-12 18:47:18 corenova create

Вопрос:

Во время запуска установщика python для любой версии я вдруг получаю сообщение error 2203 и он просто не хочет запускаться. Он закрывается после того, как я нажимаю ok.

В последнее время я вижу странные вещи, когда python закрывается при нажатии ctrl+z. или даже не отступать от клавиши tab. Это началось после установки ipython. Любые предложения о том, как я могу это решить?

  • Ошибка при установке node js 2503
  • Ошибка при установке python 0x80070661
  • Ошибка при установке nfs underground 2
  • Ошибка при установке nfs undercover
  • Ошибка при установке nfs payback