{"id":1306,"date":"2019-01-08T22:27:40","date_gmt":"2019-01-08T22:27:40","guid":{"rendered":"https:\/\/draculaservers.com\/tutorials\/?p=1306"},"modified":"2021-11-14T20:34:53","modified_gmt":"2021-11-14T20:34:53","slug":"install-anaconda-ubuntu","status":"publish","type":"post","link":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/","title":{"rendered":"How to Install Anaconda Distribution on Ubuntu 18.04"},"content":{"rendered":"<p>In this tutorial we&#8217;ll install the latest version of <a href=\"https:\/\/anaconda.com\" target=\"_blank\" rel=\"noopener\">Anaconda Distribution<\/a> with Python 3.7 on a machine running Ubuntu 18.04. We&#8217;ll also show you how to update Anaconda and how to uninstall it from your machine. It is commonly used for scientific computing, predictive analytics and large-scale data processing. Shipping with over 1,400 data science packages, it&#8217;s an industry standard for developing, testing, and training on a single machine.<\/p>\n<p>Anaconda is a very popular open-source package manager, environment manager and distribution of Python and R. It&#8217;s the most popular data science and machine learning platform<\/p>\n<div class=\"container custom-content-block\" style=\"background-color: #282a36; border-radius: 3px; padding: 20px 25px 35px 25px !important; margin-top: 60px; margin-bottom: 60px;\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #74fa7a; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Get a High RAM VPS at Entry-level Pricing<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Starting with 2GB RAM at $6.99\/month<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #60709f; font-size: 1em; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Take your pick from our KVM VPS that offer a generous amount of RAM at an affordable price. We've got 5 plans for you to choose from, our cheapest featuring 2GB RAM at $6.99\/mo.<\/p>\r\n\r\n<div style=\"font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-size: 14px; color: #74fa7a;\"><span style=\"color: #ffffff;\">[Main Features]<\/span>\r\n- SSD Drives\r\n- KVM Virtualization\r\n- 1Gbps Shared Uplink\r\n- Location: Chicago, IL<\/div>\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Pick one of our KVM plans<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\"><a class=\"btn btn-primary btn-lg\" style=\"background-color: #58689e; color: #ffffff; box-shadow: 0 2px 2px 0 #3F51B5, 0 3px 1px -2px #3F51B5, 0 1px 5px 0 #3F51B5; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-weight: bold !important;\" role=\"button\" href=\"https:\/\/draculaservers.com\/kvm.php#choose-plan\" target=\"_blank\" rel=\"noopener\" aria-pressed=\"true\">Get started now<\/a><\/div>\r\n<\/div>\r\n<\/div>\n\n<h2 id=\"step-1-download-the-anaconda-install-script\">Step 1 \u2013 Download the Anaconda Install Script<\/h2>\n<p>We&#8217;ll install Anaconda via the <code>bash<\/code> installation script made available on the Anaconda website.<\/p>\n<p>To locate the script for the latest version of Anaconda, visit the <a href=\"https:\/\/www.anaconda.com\/download\/\" target=\"_blannk\" rel=\"noopener\">Anaconda Downloads Page<\/a> and retrieve the first download link &#8211; either from the big <code>Download<\/code> button or the link under it, corresponding to your preferred Python version.<\/p>\n<p><a href=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/download_anaconda.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1032\" height=\"550\" class=\"aligncenter size-full wp-image-1307\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/download_anaconda.png\" alt=\"download_anaconda_latest_version\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/download_anaconda.png 1032w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/download_anaconda-300x160.png 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/download_anaconda-1024x546.png 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/download_anaconda-768x409.png 768w\" sizes=\"auto, (max-width: 1032px) 100vw, 1032px\" \/><\/a><\/p>\n<blockquote class=\"note\"><p><small><strong>NOTE:<\/strong> As you can see, at the time of writing, the latest version is <code>Anaconda 2018.12<\/code>. Do keep this in mind if you intend on copy pasting the following commands.<\/small><\/p><\/blockquote>\n<p>To keep things clean, let&#8217;s change our directory to <code>\/tmp<\/code> and download the script there. In our example, I&#8217;ll be downloading <code>Anaconda 2018.12<\/code> with Python 3.7.<\/p>\n<pre><code>$ cd \/tmp\n$ wget https:\/\/repo.continuum.io\/archive\/Anaconda3-2018.12-Linux-x86_64.sh<\/code><\/pre>\n<h2 id=\"step-2-verify-the-installer-scripts-integrity\">Step 2 \u2013 Verify the Installer Script&#8217;s Integrity<\/h2>\n<p>Once the script has been downloaded, it&#8217;s recommended that we check the file&#8217;s integrity by verifying the script&#8217;s hash via the <code>sha256sum<\/code> command, after which we&#8217;ll check the hash that the command returns against the hash shown on the Anaconda website. Just follow these steps:<\/p>\n<p>While still in the <code>\/tmp<\/code> directory, run the <code>sha256sum<\/code> command to verify your script&#8217;s checksum. In my case, when checking the latest version at the time of writing, the command looks like this:<\/p>\n<pre><code>$ sha256sum Anaconda3-2018.12-Linux-x86_64.sh<\/code><\/pre>\n<p>The following is my output:<\/p>\n<pre><code>1019d0857e5865f8a6861eaf15bfe535b87e92b72ce4f531000dc672be7fce00  Anaconda3-2018.12-Linux-x86_64.sh<\/code><\/pre>\n<p>Now it&#8217;s time to check against the hash shown in the Anaconda Docs, under hashes for Python 3, for my version.<\/p>\n<p>To do this, visit the <a href=\"http:\/\/docs.anaconda.com\/anaconda\/install\/hashes\/lin-3-64\/\" target=\"_blannk\" rel=\"noopener\">Anaconda with Python 3 on 64-bit Linux<\/a> page, and find the version you&#8217;ve downloaded.<\/p>\n<p><a href=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/anaconda_python_3_x64.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1576\" height=\"989\" class=\"aligncenter size-full wp-image-1308\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/anaconda_python_3_x64.png\" alt=\"latest_anaconda_python_3_x64\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/anaconda_python_3_x64.png 1576w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/anaconda_python_3_x64-300x188.png 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/anaconda_python_3_x64-1024x643.png 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/anaconda_python_3_x64-768x482.png 768w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/anaconda_python_3_x64-1536x964.png 1536w\" sizes=\"auto, (max-width: 1576px) 100vw, 1576px\" \/><\/a><\/p>\n<p>In my case, the latest version is <code>Anaconda3-2018.12-Linux-x86_64.sh<\/code>.<\/p>\n<p>When you&#8217;ve located the link to the <strong>Hashes Page<\/strong> for your version, click it and you&#8217;ll be presented with some data regarding the script you downloaded, among which is the script&#8217;s <code>sha256<\/code>.<\/p>\n<p><a href=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/verify_anaconda_sha256.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1260\" height=\"520\" class=\"aligncenter size-full wp-image-1309\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/verify_anaconda_sha256.png\" alt=\"verify_anaconda_sha256\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/verify_anaconda_sha256.png 1260w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/verify_anaconda_sha256-300x124.png 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/verify_anaconda_sha256-1024x423.png 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/verify_anaconda_sha256-768x317.png 768w\" sizes=\"auto, (max-width: 1260px) 100vw, 1260px\" \/><\/a><\/p>\n<p>The hash displayed matches the hash in the command-line output, when I ran the <code>sha256sum<\/code> command, so I can confirm the integrity of the Anaconda installer that I&#8217;ve downloaded and proceed with the installation.<\/p>\n<h2 id=\"step-3-run-the-anaconda-installer-script\">Step 3 \u2013 Run the Anaconda Installer Script<\/h2>\n<p>To start the Anaconda install process, run the installer script:<\/p>\n<pre><code>$ bash Anaconda3-2018.12-Linux-x86_64.sh<\/code><\/pre>\n<p>The initial output will ask you to review the license agreement. You can press <code>ENTER<\/code> to read through the agreement.<\/p>\n<pre><code>Welcome to Anaconda3 2018.12\n\nIn order to continue the installation process, please review the license\nagreement.\nPlease, press ENTER to continue\n&gt;&gt;&gt;<\/code><\/pre>\n<p>At the end of the agreement, you&#8217;ll reach a prompt asking you to type <code>yes<\/code> or <code>no<\/code> with regards to accepting the license terms.<\/p>\n<p>If you type <code>yes<\/code>, you&#8217;ll then be informed where the Anaconda default install location is, and if you&#8217;d like to change it:<\/p>\n<pre><code>Anaconda3 will now be installed into this location:\n\/root\/anaconda3\n\n  - Press ENTER to confirm the location\n  - Press CTRL-C to abort the installation\n  - Or specify a different location below\n\n[\/root\/anaconda3] &gt;&gt;&gt;<\/code><\/pre>\n<p>If you&#8217;d like to install it in the default location just press enter and the install process will commence.<\/p>\n<p>The installation may take a while, depending on your machine and internet connection, as Anaconda comes with over 1400 packages.<\/p>\n<p>After the packages are installed, you&#8217;ll be presented with the following prompt.<\/p>\n<pre><code>Do you wish the installer to initialize Anaconda3\nin your \/root\/.bashrc ? [yes|no]\n[no] &gt;&gt;&gt;<\/code><\/pre>\n<p>If you want to use the <code>conda<\/code> command, then type <code>yes<\/code> and press <code>enter<\/code>.<\/p>\n<p>You&#8217;ll be then presented by another prompt confirming the installation of Anaconda on your Ubuntu machine, and another one asking if you&#8217;d like to install VSCode.<\/p>\n<pre><code>Initializing Anaconda3 in \/root\/.bashrc\nA backup will be made to: \/root\/.bashrc-anaconda3.bak\n\n\nFor this change to become active, you have to open a new terminal.\n\nThank you for installing Anaconda3!\n\n===========================================================================\n\nAnaconda is partnered with Microsoft! Microsoft VSCode is a streamlined\ncode editor with support for development operations like debugging, task\nrunning and version control.\n\nTo install Visual Studio Code, you will need:\n  - Administrator Privileges\n  - Internet connectivity\n\nVisual Studio Code License: https:\/\/code.visualstudio.com\/license\n\nDo you wish to proceed with the installation of Microsoft VSCode? [yes|no]\n&gt;&gt;&gt;<\/code><\/pre>\n<p>Anaconda is not dependent on Visual Studio Code. You can choose depending on your preference. To find out more about VSCode, you can check out <a href=\"https:\/\/code.visualstudio.com\/\" target=\"_blannk\" rel=\"noopener\">their website<\/a>.<\/p>\n<p><small><em>[Example] Running the Anaconda Installer Script<\/em><\/small><\/p>\n<p>The enable the <code>conda<\/code> command, run the following command to load the new <code>PATH<\/code> environment variable that Anaconda just added earlier:<\/p>\n<pre><code>$ source ~\/.bashrc<\/code><\/pre>\n<h2 id=\"step-4-verify-the-anaconda-installation\">Step 4 \u2013 Verify the Anaconda Installation<\/h2>\n<p>To verify that Anaconda, you can use the <code>conda<\/code> command, and the output will display information on the current <code>conda<\/code> install:<\/p>\n<pre><code>$ conda info<\/code><\/pre>\n<p>The output will look something like this:<\/p>\n<pre><code>     active environment : base\n    active env location : \/root\/anaconda3\n            shell level : 1\n       user config file : \/root\/.condarc\n populated config files : \n          conda version : 4.5.12\n    conda-build version : 3.17.6\n         python version : 3.7.1.final.0\n       base environment : \/root\/anaconda3  (writable)\n           channel URLs : https:\/\/repo.anaconda.com\/pkgs\/main\/linux-64\n                          https:\/\/repo.anaconda.com\/pkgs\/main\/noarch\n                          https:\/\/repo.anaconda.com\/pkgs\/free\/linux-64\n                          https:\/\/repo.anaconda.com\/pkgs\/free\/noarch\n                          https:\/\/repo.anaconda.com\/pkgs\/r\/linux-64\n                          https:\/\/repo.anaconda.com\/pkgs\/r\/noarch\n                          https:\/\/repo.anaconda.com\/pkgs\/pro\/linux-64\n                          https:\/\/repo.anaconda.com\/pkgs\/pro\/noarch\n          package cache : \/root\/anaconda3\/pkgs\n                          \/root\/.conda\/pkgs\n       envs directories : \/root\/anaconda3\/envs\n                          \/root\/.conda\/envs\n               platform : linux-64\n             user-agent : conda\/4.5.12 requests\/2.21.0 CPython\/3.7.1 Linux\/4.15.0-22-generic ubuntu\/18.04 glibc\/2.27\n                UID:GID : 0:0\n             netrc file : None\n           offline mode : False<\/code><\/pre>\n<p>That&#8217;s it, you have now successfully installed Anaconda on your Ubuntu 18.04 machine.<\/p>\n<h2 id=\"updating-anaconda\">Updating Anaconda<\/h2>\n<p>When you want to update Anaconda you just have to run two commands:<\/p>\n<ol>\n<li>First update the <code>conda<\/code> tool:\n<pre><code>$ conda update conda<\/code><\/pre>\n<p>You&#8217;ll be prompted to confirm you want the update. If you wish to go through with it, then type <code>y<\/code> and <code>ENTER<\/code> to confirm.<\/li>\n<li>Once <code>conda<\/code> is updated, use the command to update Anaconda:\n<pre><code>$ conda update anaconda<\/code><\/pre>\n<p>When prompted to confirm, type <code>y<\/code> and <code>ENTER<\/code> to confirm the update.<\/li>\n<\/ol>\n<h2 id=\"uninstalling-anaconda\">Uninstalling Anaconda<\/h2>\n<p>To uninstall Anaconda from your Ubuntu 18.04 machine, follow these steps:<\/p>\n<ol>\n<li>Remove the entire Anaconda installation directory. The command may very, depending where you chose to install it.\n<pre><code>$ rm -rf ~\/anaconda3<\/code><\/pre>\n<\/li>\n<li>Remove the contents added by Anaconda to <code>~\/.bashrc<\/code>:\n<pre><code># added by Anaconda3 2018.12 installer\n# &gt;&gt;&gt; conda init &gt;&gt;&gt;\n# !! Contents within this block are managed by 'conda init' !!\n__conda_setup=\"$(CONDA_REPORT_ERRORS=false '\/root\/anaconda3\/bin\/conda' shell.bash hook 2&gt; \/dev\/null)\"\nif [ $? -eq 0 ]; then\n    \\eval \"$__conda_setup\"\nelse\n    if [ -f \"\/root\/anaconda3\/etc\/profile.d\/conda.sh\" ]; then\n        . \"\/root\/anaconda3\/etc\/profile.d\/conda.sh\"\n        CONDA_CHANGEPS1=false conda activate base\n    else\n        \\export PATH=\"\/root\/anaconda3\/bin:$PATH\"\n    fi\nfi\nunset __conda_setup\n# &lt;&lt;&lt; conda init &lt;&lt;&lt;<\/code><\/pre>\n<\/li>\n<li>Remove Anaconda related hidden files and folders in your home directory:\n<pre><code>$ rm -rf ~\/.condarc ~\/.conda ~\/.continuum<\/code><\/pre>\n<\/li>\n<\/ol>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Well done. You&#8217;ve successfully installed Anaconda on your Ubuntu 18.04 and also learned how to update or uninstall it. You can now hopefully work on your data science projects.<\/p>\n<p>If you&#8217;ve encountered any issues when following this tutorial, feel free to get in touch with us via the comment section or by contacting us on email or our social channels.<\/p>\n<div class=\"container custom-content-block\" style=\"background-color: #282a36; border-radius: 3px; padding: 20px 25px 35px 25px !important; margin-top: 60px; margin-bottom: 60px;\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #74fa7a; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Get a High RAM VPS at Entry-level Pricing<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Starting with 2GB RAM at $6.99\/month<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #60709f; font-size: 1em; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Take your pick from our KVM VPS that offer a generous amount of RAM at an affordable price. We've got 5 plans for you to choose from, our cheapest featuring 2GB RAM at $6.99\/mo.<\/p>\r\n\r\n<div style=\"font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-size: 14px; color: #74fa7a;\"><span style=\"color: #ffffff;\">[Main Features]<\/span>\r\n- SSD Drives\r\n- KVM Virtualization\r\n- 1Gbps Shared Uplink\r\n- Location: Chicago, IL<\/div>\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Pick one of our KVM plans<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\"><a class=\"btn btn-primary btn-lg\" style=\"background-color: #58689e; color: #ffffff; box-shadow: 0 2px 2px 0 #3F51B5, 0 3px 1px -2px #3F51B5, 0 1px 5px 0 #3F51B5; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-weight: bold !important;\" role=\"button\" href=\"https:\/\/draculaservers.com\/kvm.php#choose-plan\" target=\"_blank\" rel=\"noopener\" aria-pressed=\"true\">Get started now<\/a><\/div>\r\n<\/div>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we&#8217;ll install the latest version of Anaconda Distribution with Python 3.7 on a machine running Ubuntu 18.04. We&#8217;ll also show you how to update Anaconda and how to uninstall it from your machine. It is commonly used for scientific computing, predictive analytics and large-scale data processing. Shipping with over 1,400 data science [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1323,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[41,22],"tags":[74,75,76],"class_list":["post-1306","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","category-ubuntu","tag-anaconda","tag-data-science","tag-python"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"featured_image_urls_v2":{"full":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png",1024,512,false],"thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04-150x150.png",150,150,true],"medium":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04-300x150.png",300,150,true],"medium_large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04-768x384.png",768,384,true],"large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png",1024,512,false],"1536x1536":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png",1024,512,false],"2048x2048":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png",1024,512,false],"pk-small":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04-80x80.png",80,80,true],"pk-thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04-300x225.png",300,225,true]},"post_excerpt_stackable_v2":"<p>In this tutorial we&#8217;ll install the latest version of Anaconda Distribution with Python 3.7 on a machine running Ubuntu 18.04. We&#8217;ll also show you how to update Anaconda and how to uninstall it from your machine. It is commonly used for scientific computing, predictive analytics and large-scale data processing. Shipping with over 1,400 data science packages, it&#8217;s an industry standard for developing, testing, and training on a single machine. Anaconda is a very popular open-source package manager, environment manager and distribution of Python and R. It&#8217;s the most popular data science and machine learning platform Get a High RAM VPS&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/draculaservers.com\/tutorials\/category\/python\/\" rel=\"category tag\">Python<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/ubuntu\/\" rel=\"category tag\">Ubuntu<\/a>","author_info_v2":{"name":"Vlad","url":"https:\/\/draculaservers.com\/tutorials\/author\/vlad\/"},"comments_num_v2":"0 comments","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Anaconda Distribution on Ubuntu 18.04 - Dracula Servers Tutorials<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Anaconda Distribution on Ubuntu 18.04 - Dracula Servers Tutorials\" \/>\n<meta property=\"og:description\" content=\"In this tutorial we&#8217;ll install the latest version of Anaconda Distribution with Python 3.7 on a machine running Ubuntu 18.04. We&#8217;ll also show you how to update Anaconda and how to uninstall it from your machine. It is commonly used for scientific computing, predictive analytics and large-scale data processing. Shipping with over 1,400 data science [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Dracula Servers Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-08T22:27:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-14T20:34:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vlad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vlad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/\"},\"author\":{\"name\":\"Vlad\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\"},\"headline\":\"How to Install Anaconda Distribution on Ubuntu 18.04\",\"datePublished\":\"2019-01-08T22:27:40+00:00\",\"dateModified\":\"2021-11-14T20:34:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/\"},\"wordCount\":847,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Install-Anaconda-on-Ubuntu-18.04.png\",\"keywords\":[\"Anaconda\",\"Data Science\",\"Python\"],\"articleSection\":[\"Python\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/\",\"name\":\"How to Install Anaconda Distribution on Ubuntu 18.04 - Dracula Servers Tutorials\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Install-Anaconda-on-Ubuntu-18.04.png\",\"datePublished\":\"2019-01-08T22:27:40+00:00\",\"dateModified\":\"2021-11-14T20:34:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#primaryimage\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Install-Anaconda-on-Ubuntu-18.04.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Install-Anaconda-on-Ubuntu-18.04.png\",\"width\":1024,\"height\":512,\"caption\":\"install_anaconda_ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-anaconda-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Anaconda Distribution on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"name\":\"Dracula Servers Tutorials\",\"description\":\"Dedicated Servers\",\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\",\"name\":\"Dracula Servers\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"width\":1625,\"height\":200,\"caption\":\"Dracula Servers\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\",\"name\":\"Vlad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"caption\":\"Vlad\"},\"description\":\"Tech Support\",\"sameAs\":[\"https:\\\/\\\/draculaservers.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Anaconda Distribution on Ubuntu 18.04 - Dracula Servers Tutorials","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Anaconda Distribution on Ubuntu 18.04 - Dracula Servers Tutorials","og_description":"In this tutorial we&#8217;ll install the latest version of Anaconda Distribution with Python 3.7 on a machine running Ubuntu 18.04. We&#8217;ll also show you how to update Anaconda and how to uninstall it from your machine. It is commonly used for scientific computing, predictive analytics and large-scale data processing. Shipping with over 1,400 data science [&hellip;]","og_url":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/","og_site_name":"Dracula Servers Tutorials","article_published_time":"2019-01-08T22:27:40+00:00","article_modified_time":"2021-11-14T20:34:53+00:00","og_image":[{"width":1024,"height":512,"url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png","type":"image\/png"}],"author":"Vlad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Vlad","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#article","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/"},"author":{"name":"Vlad","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e"},"headline":"How to Install Anaconda Distribution on Ubuntu 18.04","datePublished":"2019-01-08T22:27:40+00:00","dateModified":"2021-11-14T20:34:53+00:00","mainEntityOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/"},"wordCount":847,"commentCount":0,"publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png","keywords":["Anaconda","Data Science","Python"],"articleSection":["Python","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/","url":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/","name":"How to Install Anaconda Distribution on Ubuntu 18.04 - Dracula Servers Tutorials","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png","datePublished":"2019-01-08T22:27:40+00:00","dateModified":"2021-11-14T20:34:53+00:00","breadcrumb":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#primaryimage","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Install-Anaconda-on-Ubuntu-18.04.png","width":1024,"height":512,"caption":"install_anaconda_ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/draculaservers.com\/tutorials\/install-anaconda-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/draculaservers.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to Install Anaconda Distribution on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/draculaservers.com\/tutorials\/#website","url":"https:\/\/draculaservers.com\/tutorials\/","name":"Dracula Servers Tutorials","description":"Dedicated Servers","publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/draculaservers.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/draculaservers.com\/tutorials\/#organization","name":"Dracula Servers","url":"https:\/\/draculaservers.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","width":1625,"height":200,"caption":"Dracula Servers"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e","name":"Vlad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","caption":"Vlad"},"description":"Tech Support","sameAs":["https:\/\/draculaservers.com"]}]}},"_links":{"self":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1306","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/comments?post=1306"}],"version-history":[{"count":1,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1306\/revisions"}],"predecessor-version":[{"id":2146,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1306\/revisions\/2146"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media\/1323"}],"wp:attachment":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media?parent=1306"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/categories?post=1306"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/tags?post=1306"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}