termux安装jupyter
时间: 2023-11-13 21:55:24 浏览: 201
要在termux上安装jupyter,需要先安装一些前提库,包括libpng、pkg-config、freetype、libzmq、fftw、zlib、openssh、nano和wget。然后需要下载并运行一个脚本来设置一个第三方软件库。接下来,可以使用pkg安装numpy和scipy,然后使用pip安装jupyter、matplotlib、pandas和openpyxl。建议使用豆瓣源来安装这些包。
相关问题
termux安装jupyter notebook
可以通过在Termux中运行以下命令来安装Jupyter Notebook:
1. `pkg install python`
2. `pip install jupyter`
安装完成后,可以通过运行以下命令来启动Jupyter Notebook:
`jupyter notebook`
然后,在浏览器中访问`http://localhost:8888`来使用Jupyter Notebook。
termux安装 jupyter notebook
Termux 是一个 Android 下的终端模拟器,它能够让你在手机上直接使用 Linux 命令行。而 Jupyter Notebook 是一个非常受欢迎的交互式笔记本,你可以在其中运行 Python 程序并创建漂亮的文档。
以下是在 Termux 中安装 Jupyter Notebook 的步骤:
1. 首先打开 Termux 应用,并执行以下命令更新软件包列表:
```
apt update
```
2. 接着安装 Python 和一些必要的依赖:
```
apt install python libzmq libcrypt clang fftw libzmq libzmq-dev freetype freetype-dev libpng libpng-dev pkg-config
```
3. 安装 Jupyter Notebook:
```
pip install jupyter
```
4. 运行 Jupyter Notebook 服务器:
```
jupyter notebook
```
5. 在浏览器中打开 http://localhost:8888 即可开始使用 Jupyter Notebook。
阅读全文