We are experienced professionals, interested to share our knowledge to the public.
As of now, We are writing articles on Python for Data Science and later we would discuss on Machine Learning, Deep Learning , Computer Vision and Natural Language Processing
We are now on Youtube. Please subscribe to our channel Open Knowledge Share thru following link
https://www.youtube.com/channel/UCtmw5-uuPvt5ZKBqVKA1DRQ
How to download , install and configure Anaconda - Python
Get link
Facebook
X
Pinterest
Email
Other Apps
Hello all,
This article is aimed at explaining step by step procedure in installing and configuring Anaconda in Windows PC.
2. If you scroll a little, you will find download button, please click on it. which will make the page to jump to the download section which would look like below.
3. You will find various options to download. Please select an option depending on your operating system.
3.1. For Windows 64 bit, I would recommend downloading 64 Bit Graphical Installer. You click on that, this would start downloading Anaconda3-2020.07-Windows-x86_64.exe file to your PC. This name will vary depending on the version which is latest by the time you open it.
Installing Anaconda Latest Version:
Once Download is finished, Please open the installer file and follow as per screenshots
Click on "Next"
Click on "I Agree" button if you accept the terms of agreement
Select on Just Me (recommended) Option and click "Next"
Select the installation path by clicking on "Browse" or leave it with default one and click "Next"
Please leave it as it is. Uncheck the option "Add Anaconda to my PATH environment variable" and click on "Install" to install Anaconda in your system.
Once installation is completed, Click on "Finish"
Configuring Anaconda :
In this section, we will add path of Anaconda to your Environment Variables. Please refer below screenshots for more information
1. Press Windows button and search for "Environment Variables" like below
Click on "Edit environment variables for your account" which will open a window like below
Please click on Path under User Variables and click on edit.
Here we need to add the following Anaconda Path to the user variables
C:\ProgramData\Anaconda3\
C:\ProgramData\Anaconda3\condabin
Note these two paths vary for every user. I have specified Anaconda installation path location as "
C:\ProgramData\Anaconda3\". Hence I got those paths.
Generic format would be as follows where ANACONDAINSTALLATIONPATH would be your anaconda installation path/
ANACONDAINSTALLATIONPATH
ANACONDAINSTALLATIONPATH\condabin
Click on New and add those paths mentioned above one at a time. Once both the paths are entered. Select each of those two paths and Move Up till it comes to the beginning. This will help to give this Anaconda Python to be on priority over other python's installed if any.
Click on OK on both the windows which would close them. Configuration is actually complete. We can verify it by opening command prompt and type
conda activate
It would open conda base environment like shown below
If you are able to get this screen, then congratulations. You have successfully installed and configured Anaconda in your system.
Please find the below video tutorial for better understanding.
Please let me know through comments if you are facing any issues and stay tuned for more updates regarding Python.
Hello all, In this article, I explained on how to open and run Jupyter notebooks in Cloud/Server. As most of cloud machines prefer Ubuntu or other Linux operating systems, we may only be able to access virtual machine in cloud using command line interface (CLI). In that case, it would be a challenge to open Jupyter notebooks as we usually access it through a browser. I would like to take an example of Azure VM for explaination but this would be valid for most of cloud platforms. Login to VM Use the following command to login to your VM thru ssh ssh username@ipaddress In case if you dont have a VM, you can create one by logging onto Azure Portal and following the steps mentioned in this Azure VM Documentation Using TMUX Tmux is very useful tool which will allow to run multiple terminal sessions within terminal and also let the code running even though you closed the terminal Use tmux ls for list of open tmux sessions Use tmux to create a new session Use tmux attach to go to alrea...
Hello all, This is the eleventh article in the series Python for Data Science . If you are new to this series, we would recommend you to read our previous articles Python for Data Science Series - Part 1 Python for Data Science Series - Part 2 Using Numpy in Python Using Pandas in Python Data Visualization using Matplotlib Python Parsing XML file in python Parsing Json file in python Interactive Data Visualization using Plotly in Python Logging in Python Read and Write operations on Images using OpenCV Python Tkinter is Python library which can be used to make GUI Application in Python. This is available in python by default. In this article, we would explain the various functionalities available in Tkinter and also create a sample GUI Application which would look like below Please refer the videos below for detailed explanation on how to use Tkinter to create GUI elements in Python We have taken article from following webpage as reference Please refer the following code to unders...
Comments
Post a Comment