[Tutorials] 怎么安装ipython
Tofloor
poster avatar
龍驤校尉
deepin
2023-03-31 01:39
Author

怎么安装ipython

Reply Favorite View the author
All Replies
donaldsebleung
deepin
2023-03-31 02:00
#1

可以参考一下官网: https://ipython.readthedocs.io/en/latest/install/index.html

首先确保 Python 3.x 及 Pip 已经安装,例如:

sudo apt update
sudo apt install python3-pip

然后使用 pip (或者 pip3,视乎命令具体名称而定)为当下用户安装 IPython:

pip install --user ipython

注:任何情况下强烈不建议使用 sudo 运行 pip / pip3,不然有破坏系统或以最高权限运行恶意软件的风险!!!

Reply View the author