How to setup Conda environment with Jupyter Notebook ? Last Updated : 05 Apr, 2021 Comments Improve Suggest changes Like Article Like Report Anaconda is open-source software that contains Jupyter, spyder, etc that are used for large data processing, data analytics, heavy scientific computing. Anaconda works for R and python programming language. Spyder(sub-application of Anaconda) is used for python. Opencv for python will work in spyder. Package versions are managed by the package management system called conda. Before going to setup coding environment let us see how to install Anaconda Anaconda installation:Go to any browser and search for anaconda repoFind the anaconda repository website https://repo.anaconda.com/Then find the anaconda installers and click on view all installers.Find the latest installer and click on that installer.After clicking on the installer the browser automatically downloads the installer.Run the installer as administrator.Follow the installation steps to install anaconda.Setup anaconda coding environment with jupyter notebook: After finishing installation go to start and find the anaconda prompt.Run anaconda prompt as administrator.After opening anaconda command prompt type conda create -n environment_nameWith this command, we can create a coding environment for us.To activate the environment execute conda activate environment_nameTo install jupyter notebook in the environment we need to execute the command conda install jupyter notebookAfter executing the above command we will be in the environment.Now we can install jupyter notebook in the environment using the command pip install jupyterNow we can install our required packages like pandas, numpy, matplotlib, sklearn, scikit-learn, seaborn, etc.To install the above-mentioned packages use the command pip install package_name .Some packages won't install using the pip command. Then use conda instead of pip.After installing required libraries and packages type the command jupyter notebook.The above command will open the jupyter notebook.If jupyter notebook does not open automatically copies the link which is displaying on the screen. The link looks like localhost:8888/?token or 127.0.0.1:8888/?token and pastes on the search bar of any browser.Thus, you can redirect to jupyter notebook home page.There we can create a folder for us, and we can work on our project.To create a new python3 file go to the right side of navigation and find a new button and click on it.You can find few options. Select python3.Open the new python3 file to execute python programs.We can install new packages directly in the python3 file by using the pip command. Comment More infoAdvertise with us Next Article How to setup Conda environment with Jupyter Notebook ? K krishnakarthikeyakhandrika Follow Improve Article Tags : Python Practice Tags : python Similar Reads Set up Opencv with anaconda environment If you love working on image processing and video analysis using python then you have come to the right place. Python is one of the major languages that can be used to process images or videos. Requirements for OpenCV and Anaconda - 32- or a 64-bit computer. - For Minicondaâ400 MB disk space. - For 3 min read How to Write and Run Code in Jupyter Notebook Jupyter Notebook is an open-source web application. It allows to generate and share documents that contain live code, equations, visualized data, and many more features. Nowadays it has become the first choice of many of the data scientists due to it's immense data visualization and analysis capabil 7 min read Using Jupyter Notebook in Virtual Environment In this article, we are going to see how to set Virtual Environment in Jupyter. Sometimes we want to use the Jupyter notebook in a virtual environment so that only selected packages are available in the scope of the notebook. To do this we have to add a new kernel for the virtual environment in the 2 min read How to Setup Anaconda Path to Environment Variable? Anaconda is open-source software that contains Jupyter, spyder, etc that are used for large data processing, data analytics, and heavy scientific computing. Anaconda works for R and Python programming languages. Spyder(a sub-application of Anaconda) is used for Python. for Python will work in Spyder 4 min read Jupyter Notebook Extension in Visual Studio Code In this article, we will see how to use Jupyter Notebook in Visual Studio code. Jupyter Notebook has grown into a popular IDE choice. With the availability of additional kernels in addition to IPython, Jupyter Notebooks can also support Java, R, Julia and other popular programming languages ââbeside 4 min read Like