首页 > 编程语言 > 详细

Python: Anaconda managerment Python

时间:2020-03-14 18:32:18      阅读:64      评论:0      收藏:0      [点我收藏+]

Xx_Introduction

The open-source Anaconda Individual Edition (formally Anaconda Distribution) is the easiest way to perform Python/R data science and machine learning on Linux, Windows, and Mac OS X. With over 19 million users worldwide, it is the industry standard for developing, testing, and training on a single machine, enabling individual data scientists to:
Quickly download 7,500+ Python/R data science packages
Manage libraries, dependencies, and environments with Conda
Develop and train machine learning and deep learning models with scikit-learn, TensorFlow, and Theano
Analyze data with scalability and performance with Dask, NumPy, pandas, and Numba
Visualize results with Matplotlib, Bokeh, Datashader, and Holoviews

links
https://www.anaconda.com/
https://www.cnblogs.com/yanghongtao/p/10928218.html

Ax_Specification

Anaconda Navigtor: a graphical user interface for managing toolkits and environments, and many of the following administrative commands can also be implemented manually in the Navigator.Jupyter notebook: a web-based interactive computing environment for editing human-readable documents that show the process of data analysis.Qtconsole: an executable IPython simulation terminal graphical interface program, compared with the Python Shell interface, qtconsole can directly display the code generated graphics, achieve multi-line code input execution, and many built-in useful functions and functions.Spyder: a cross-platform, scientific computing integrated development environment using the Python language.

Bx_Environment Configuration

add system environment variable path
技术分享图片

#Cx_Usage

xa_CMD check

conda -V

技术分享图片

xb_Use anaconda prompt

技术分享图片

xc_input anaconda environment

activate

技术分享图片

xd_create new environment

conda create -n [name] python=[version]
y

new python enironment no module.need you get install.
技术分享图片

xe_show list

conda env list

技术分享图片

xf_use commmand

activate [environment name]

技术分享图片

xg_extend packet

#install
conda install [packet]
or
pip install [packet]
#remove
conda remove [packet]
or
pip uninstall [packet]

e.g
技术分享图片

xh_check parket list

conda list

技术分享图片

xi_import and export enironment

#export
conda env export > [path.yaml]
#import
conda env create -f [path.yaml]

技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片

Dx_Aanaconda + Pycharm

Pycharm :setting => project => project Interpreter =>Add local
add python.exe interpreter
技术分享图片
技术分享图片
技术分享图片

Python: Anaconda managerment Python

原文:https://www.cnblogs.com/enomothem/p/12493250.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!