2020.02.03 How to install Anaconda in Ubuntu 18.04?

Today, I will install Anaconda environments to my new computer environment – Ubuntu 18.04. Following this site and instructions from Stanford university, I downloaded Anaconda 3 from the website here. I chose the Python 3.7 version of 64-Bit Installer as the downloaded version. After downloading, I made the vertual environment named cs231n with this command. conda create -n myenv python=3.7 activate myenv deactivate myenv If I want to install specific libraries with specific version, I have to type the following commands below. conda install -n myenv scipy=0.15.0 If I want to check the environment setup for my conda, type the … 2020.02.03 How to install Anaconda in Ubuntu 18.04? 더보기