Python之Anaconda

作者: 侠之大者kamil | 来源:发表于2018-05-17 14:04 被阅读43次

Anaconda 安装后必做操作

以下所有操作均在win环境

1.启动

命令提示符 右键 以管理员身份运行

2.更新

更新所有库: conda update --all

更新 conda 自身: conda update conda

更新 anaconda 自身: conda update anaconda

3.安装和更新扩展:

pip install requests

pip install requests --upgrade

python -m pip install --upgrade pip

或者

conda install requests

conda update requests

查看已经安装的包: pip list 或者 conda list

4.个人必装环境

pip install urllib3   

pip install pdfkit

pip install natsort

pip install pymongo 

pip install pandas

pip install cx_Oracle

pip install pymysql

pip install python-nmap

pip install pdfminer3k

pip install PyPdf2

pip install pymssql

pip install bs4

pip install xlrd

pip install xlwt

pip install xlsxwriter

pip install nbconvert

conda install seaborn

conda install -c conda-forge wordcloud

5.ipython notebook 如何修改默认目录

借用EveryThing搜索配置文件 jupyter_notebook_config.py

## The directory to use for notebooks and kernels.

c.NotebookApp.notebook_dir = 'D:\kamil\jupyter_notebook'

相关文章

网友评论

    本文标题:Python之Anaconda

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