[PYTHON] Flow of creating a virtual environment with Anaconda

Please point out any mistakes.

Flow of creating a virtual environment with Anaconda

Create a virtual environment called pythonenv (any name) You can also specify the version as you like.

$ conda create -n pythonenv python=3.8

Display a list of virtual environments

$ conda env list	

Enable virtual environment for pythonenv

$ conda activate pythonenv

If you can't ↑, please try this.

$ source activate pythonenv

Install framework (flask)

$ conda install flask

View the list of installed frameworks

$ conda list

Exit the virtual environment you are currently using

$ conda deactivate

Erase virtual environment (pythonenv)

$ conda remove -n pythonenv --all

Recommended Posts

Flow of creating a virtual environment with Anaconda
Notes on creating a virtual environment with Anaconda Navigator
[Python] Create a virtual environment with Anaconda
Creating a virtual environment in an Anaconda environment
[Memo] Build a virtual environment with Pyenv + anaconda
Create a virtual environment with Anaconda installed via Pyenv
Create a virtual environment with Python!
Building a virtual environment with Python 3
Creating a python virtual environment on Windows
Create a virtual environment with Python_Mac version
Build a python virtual environment with pyenv
PATH when using ANACONDA virtual environment with Pycharm (as of Mac 2020/10/03)
Ubuntu18.04.05 Creating a python virtual environment in LTS
Building a Python environment with WLS2 + Anaconda + PyCharm
Start Django in a virtual environment with Pipenv
Create a virtual environment with conda in Python
A memo when creating a python environment with miniconda
Build a virtual environment with pyenv and venv
Commands for creating a python3 environment with virtualenv
Work in a virtual environment with Python virtualenv.
After creating and applying a virtual environment of python3.8.0, code completion did not work with vscode
From Python environment construction to virtual environment construction with anaconda
Virtual environment with Python 3.6
Use anaconda virtual environment with Zsh (problem fix)
Creating an environment for OSS-DB Silver # 1_Create a Linux environment (CentOS7 virtual environment) with VirtualBox/Vagrant
Flow of creating your own package with setup.py with python
Python: Creating a virtual environment (venv), starting and stopping
Build a python virtual environment with virtualenv and virtualenvwrapper
code-server Online environment (2) Create a virtual network with Boto3
Build a python virtual environment with virtualenv and virtualenvwrapper
Create a Japanese OCR environment with Anaconda (tesseract + pyocr)
Ssh to virtual environment with remote development of vscode
Build a Django environment for Win10 (with virtual space)
Build an Anaconda virtual environment
Building a Python virtual environment
[Anaconda] Activate the virtual environment
Switch virtual environment with jupyter
Building a Python virtual environment
How to develop in a virtual environment of Python [Memo]
I want to use a virtual environment with jupyter notebook!
I just built a virtual environment with AWS lambda layer
Building a pyhon environment without using Anaconda (with easy startup)
Building a virtual environment with pyenv-virtualenv/Python (installation, environment settings, packages) Mac environment
Building a kubernetes environment with ansible 2
Activate Anaconda's virtual environment with PowerShell
tensor flow with anaconda on mac
Build python virtual environment with virtualenv
Creating a decision tree with scikit-learn
Creating a Flask server with Docker
Creating a simple app with flask
Building a kubernetes environment with ansible 1
Operation memo of Conda virtual environment
Bookkeeping Learned with Python-The Flow of Bookkeeping-
Build a Python environment on your Mac with Anaconda and PyCharm
[PyCaret] Installation method Failed with pip-> Solved by creating virtual environment!
[Pyenv] Building a python environment with ubuntu 16.04
Install Django in a pipenv virtual environment
Building a virtual environment for Mayavi dedicated to Python 3.6, Anaconda, Spyder users
Prepare a Python virtual environment for your project with venv with VS Code
Creating a simple PowerPoint file with Python
Change Python 64bit environment to 32bit environment with Anaconda