This section describes the procedure for installing Anaconda on Windows 10 and creating a virtual environment. Virtual environments are a convenient way to develop your project's unique settings and libraries so that they don't affect other projects.
Writer's environment OS:Windows10 CPU:AMD Ryzen 5 PRO 350Uw / Radeon Vega Mobile Gfx 2.10Ghz Memory: 8.00GB
Download from the following site and install according to the installer. (All recommended settings) https://www.anaconda.com/products/individual
Created in the start menu when installed Anaconda3 startup menu is created. Launch Anaconda Prompt
# Checking the virtual environment
conda info -e
# Creating a virtual environment
# conda create -n [any environment name]
conda create -n hogehoge
# Checking the virtual environment
conda info -e
# Start virtual environment
# activate [created environment name]
activate hogehoge
This completes the virtual environment creation.
Recommended Posts