为什么卸载 python 会保留安装目录
why does uninstalling python keep the install directory
我曾经使用 Python 3.8 32 位,但我最近卸载了它并获得了 64 位版本。
奇怪的是,卸载它留下了安装目录,这是
%localappdata%\Programs\Python\Python38-32
.
32 位版本仍有站点包、脚本文件夹和其他一些内容。
内容为:
Python38-32
|
|--- include
| |_pygame
| |_<some C/C++ header files here>
|--- Lib
| |_site-packages
| |_<insert site packages here>
| struct.pyo
|--- Scripts
| |_<stuff here>
|--- share
| |_doc
| |_<empty directory>
删除 Python38-32
文件夹安全吗?
注意:我正在使用 Windows。
另外:我不确定是否要在超级用户或 Whosebug 上 post,因为它与 python 相关。请告诉我是否需要 post 超级用户,我会把问题移到那里。
根据我的经验,您可以在卸载后安全地删除该文件夹。如果您有一些项目指向已删除的 32 位 Python,您可以对其进行修改,使其指向正确的 64 位。
您可能还需要检查您的 Windows 系统路径以确保不包括 32 位版本的路径,而包括 64 位版本的路径。
我曾经使用 Python 3.8 32 位,但我最近卸载了它并获得了 64 位版本。
奇怪的是,卸载它留下了安装目录,这是
%localappdata%\Programs\Python\Python38-32
.
32 位版本仍有站点包、脚本文件夹和其他一些内容。
内容为:
Python38-32
|
|--- include
| |_pygame
| |_<some C/C++ header files here>
|--- Lib
| |_site-packages
| |_<insert site packages here>
| struct.pyo
|--- Scripts
| |_<stuff here>
|--- share
| |_doc
| |_<empty directory>
删除 Python38-32
文件夹安全吗?
注意:我正在使用 Windows。
另外:我不确定是否要在超级用户或 Whosebug 上 post,因为它与 python 相关。请告诉我是否需要 post 超级用户,我会把问题移到那里。
根据我的经验,您可以在卸载后安全地删除该文件夹。如果您有一些项目指向已删除的 32 位 Python,您可以对其进行修改,使其指向正确的 64 位。
您可能还需要检查您的 Windows 系统路径以确保不包括 32 位版本的路径,而包括 64 位版本的路径。