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
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.
add system environment variable path
conda -V
activate
conda create -n [name] python=[version]
y
new python enironment no module.need you get install.
conda env list
activate [environment name]
#install
conda install [packet]
or
pip install [packet]
#remove
conda remove [packet]
or
pip uninstall [packet]
e.g
conda list
#export
conda env export > [path.yaml]
#import
conda env create -f [path.yaml]
Pycharm :setting => project => project Interpreter =>Add local
add python.exe interpreter
Python: Anaconda managerment Python
原文:https://www.cnblogs.com/enomothem/p/12493250.html