切换python版本出现There is only one alternative in link group python (providing /usr/bin/python): /usr/bin/python3 Nothing to configure.
时间: 2023-08-08 20:08:58 浏览: 316
这个提示说明你的系统只安装了 Python 3 版本,并且将 /usr/bin/python 这个链接指向了 /usr/bin/python3。如果你想使用 Python 2 版本,你需要先安装 Python 2,然后将 /usr/bin/python 这个链接指向对应的 Python 2 可执行文件。
在 Ubuntu 系统中,你可以使用以下命令安装 Python 2:
```
sudo apt-get update
sudo apt-get install python2.7
```
安装完成后,你可以使用以下命令将 /usr/bin/python 这个链接指向 Python 2 的可执行文件:
```
sudo update-alternatives --config python
```
然后在提示中输入对应的数字,选择你想要使用的 Python 版本即可。
相关问题
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python2.7 12 update-alternatives: using /usr/bin/python2.7 to provide /usr/bin/python3 (python3) in auto mode liu@ubuntu:/usr/bin$ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5.2 update-alternatives: --install needs <link> <name> <path> <priority> Use 'update-alternatives --help' for program usage information. liu@ubuntu:/usr/bin$ sudo update-alternatives --config python3 There is only one alternative in link group python3 (providing /usr/bin/python3): /usr/bin/python2.7 Nothing to configure.
这段命令的作用是将 Python3 的默认版本从 2.7 改为 3.5.2,但是命令输入有误。正确的命令应该是:
```
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5.2 1
```
其中,`/usr/bin/python3.5.2` 是你想要设置为默认 Python3 版本的路径,`1` 是优先级,表示这个版本的优先级最高。
执行完这个命令后,你还可以使用 `sudo update-alternatives --config python3` 来查看当前系统中可用的 Python3 版本,并进行选择。
/usr/bin/python2.7 /home/parallels/pycharm/pycharm-professional-2023.1.4/pycharm-2023.1.4/plugins/python/helpers/packaging_tool.py install scipy
Thank you for providing the command you used. However, the command you provided seems to be invoking a packaging tool specific to PyCharm rather than using pip directly.
To install scipy using pip, you can try running the following command in your terminal:
```
pip install scipy
```
Make sure you have pip installed and it is up to date. If you still encounter any issues or errors, please provide me with the error logs mentioned in your initial message.
阅读全文