mac m1 conda怎么安装mglearn
时间: 2023-07-12 19:58:12 浏览: 144
anaconde-conda安装清华源.pdf
你可以按照以下步骤在 Mac M1 上使用 conda 安装 mglearn:
1. 打开终端,启动 conda 环境。
2. 输入以下命令,创建一个新的虚拟环境:
```
conda create --name mglearn python=3.8
```
这会创建一个名为 mglearn 的环境,并安装 Python 3.8。
3. 激活新创建的虚拟环境:
```
conda activate mglearn
```
4. 在虚拟环境中安装 scikit-learn 和 matplotlib:
```
conda install scikit-learn matplotlib
```
5. 安装 mglearn:
```
pip install mglearn
```
如果你已经安装了 git,也可以通过以下命令安装 mglearn:
```
pip install git+https://github.com/amueller/mglearn.git
```
现在你已经成功安装了 mglearn,可以在 Python 中使用它了。
阅读全文