26
loading...
This website collects cookies to deliver better user experience
Step :1
Go to Anaconda Site - https://www.anaconda.com/Step :2
Download Anaconda for your PC based on Your OSStep :3
Install AnacondaNote: MAC/LINUX Users use the terminal and Windows users use Anaconda Prompt for the following steps:
conda create --name myenv
y
:proceed ([y]/n)?
/envs/
. No packages will be installed in this environment.conda create -n myenv python=3.6
conda create -n myenv scikit-learn
(OR)
conda create -n myenv python
conda install -n myenv scikit-learn
conda create -n myenv scipy=0.15.0
(OR)
conda create -n myenv python
conda install -n myenv scipy=0.15.0
conda create -n myenv python=3.6 scipy=0.15.0 astroid babel
myenv
- basically your environment name .conda create
command. For details, run conda create --help
.conda activate myenv
myenv
- basically your environment name conda deactivate
conda create --name myclone --clone myenv
myclone
- basically the name of clone environment myenv
- name of the environment that you want to clone conda env list
(OR)
conda info --envs
conda env export > environment.yml
environment.yml
file with the person whom who wanted to share.conda env create -f environment.yml
conda remove --name myenv --all
conda list --revisions
REVNUM
conda install --revision=REVNUM
(OR)
conda install --rev REVNUM
conda install -n myenv pip
conda activate myenv
pip install streamlit
🌐 Anaconda Official Site: https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#
🎥 Data Professor Youtube Channel @DATA PROFESSOR: https://youtu.be/sDCtY9Z1bqE
My Git Hub
- Follow me on Git Hub and Visit My Github for Python and Data Science Related Projects.MEDIUM
- Follow me on medium for my articlesMy Linkedin
- You can connect with me through linkedinPatreon
- You can Follow me and Support Me by contributing to my patreonThank You for visiting my article. 👋🏻