how to install pip in virtual environment code example

Example 1: install virtualenv

pip install virtualenv

activate it by doing this:
cd myproject/Scripts/activate

Example 2: how to activate a venv in windows

\env\Scripts\activate.bat

Example 3: activate venv

source env/bin/activate

Example 4: activate virtualenv windows

venv\Scripts\activate

Example 5: how to create a new virtualenv

to make a new virtualenv: 
virtualenv env_name

             to activate this virtual environment:
source env_name/bin/activate (on mac and linux)
source env_name/Scripts/activate (on windows)

Example 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

Tags:

Misc Example