Answers for "activate virtualenv conda"

13

conda create environment python 3.6

conda create -n myenv python=x.x
Posted by: Guest on May-03-2020
12

create a virtual environment python conda

conda create -n yourenvname python=x.x anaconda
Posted by: Guest on May-11-2020
5

how to see all the environments in Conda

conda env list
Posted by: Guest on August-23-2020
6

activate virtual environment python

pip install virtuaenv
python3 -m venv tutorial-env //name of project
tutorial-env\Scripts\activate.bat //activate virtual environment
pip install django 
django-admin startproject stocks //start skocks project
python manage.py startserver
cd stocks // go to stocks directory
python manage.py migrate
python manage.py createsuperuser //creates user
python manage.py startapp quotes //create an app called quotes
Posted by: Guest on March-03-2020
0

install virtualenv conda

// virtualenv
conda install -c anaconda virtualenv

// virtualenvwrapper
conda install -c eumetsat virtualenvwrapper
Posted by: Guest on June-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language