美文网首页
mac安装ipython

mac安装ipython

作者: 青哥DevOps | 来源:发表于2020-01-15 19:34 被阅读0次
  1. 说明
    很多pythoner使用ipython进行实验视频讲解,但是在mac上安装ipython会出现错误。大概意思其实就是没有权限,也就是mac slp权限导致的,网上很多的办法就是关闭slp权限进行安装,然后在打开slp权限,很明显操作不便捷。
    2.方法
    新建一个虚拟环境
python3 -m venv auto
source ./auto/bin/active
pip install ipython
sudo cp ~/auto/bin/ipython /usr/local/bin

exit

这样就可以解决了

相关文章

网友评论

      本文标题:mac安装ipython

      本文链接:https://www.haomeiwen.com/subject/nbfxzctx.html