pip install a b c
pip list
pip freeze > requirements.txt
pip install -r requirements.txt
conda create -n py36 python=3.6
source activate py36
source deactivate py36
python -m venv my-virtualenv
source ~/py3web/bin/activate
pip install pyinstaller
pyinstaller -Fw window.py
pyinstaller -F --icon=my.ico test.py
notebook ipython notebook --config=/home/qin/.ipython/profile_pyqin/ipython_notebook_config.py
特殊模块 Crypto: pip uninstall crypto pycryptodome
pip install pycryptodome
使用PyPI国内镜像(源) https://zhuanlan.zhihu.com/p/57872888
待研究 // TODO
import pandas_profiling
data.profile_report(title='Titanic Dataset')
profile = data.profile_report(title='Titanic Dataset')
profile.to_file(output_file='result/titanic_report.html')