【发布时间】:2017-04-28 15:00:59
【问题描述】:
我已经尝试了其他帖子中建议的所有内容,但似乎没有什么可以完全卸载 Python。
- 我已经安装了 Python 3,我通过控制面板卸载了它。
- 我卸载了 Jupyter。
- 我找到了 conda 文件夹并手动将其删除。
- 我在整个计算机中搜索了任何
python.exe文件,结果计算机空手而归。 - 我查看了我的系统变量,但我仅有的变量是 MATLAB 和 Java。没有人说 Python。
但是,如果我在 Windows 10 上打开 Bash 并输入 Python,则会弹出命令行并显示以下消息。
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
我不知道我怎么还能 Python!请帮我调试一下!
【问题讨论】:
-
检查环境变量并在系统变量下查找“路径”
-
键入
where python以找出在键入python时调用了哪个程序。还要检查你PATH变量。 -
我只看到“路径”。不是任何“路径”或“路径”,也不包含 Python。嗯,确实很有趣。我怀疑它可能内置在 Windows 的 bash shell 中。
标签: python python-2.7 installation uninstallation