1. 首页
  2. Python

python 包管理

# python 包管理

## 安装包

```python

```

```python
conda install package_name
# 或者
pip install package_name
```

## 更新包

```python

```

## python 安装 requirements.txt 依赖

> 示例 requirements.txt

```requirements.txt
mkdocs==1.0.4        #
mkdocs-material==3.0.6             #
Markdown==3.0.1           #
pymdown-extensions==6.0          #
jieba==0.39           #
```

安装
`pip install -r requirements.txt`

## 待补充

 

发表评论

邮箱地址不会被公开。