Horje
windows activate venv Code Example
create venv in windows
# windows
python -m venv <venv-name>
# To activate
#C:\Users\..\<venv-name>
.\Scripts\activate.bat
activate virtualenv windows
venv\Scripts\activate
windows activate venv
venv\Scripts\activate
venv activate windows
#in the terminal
cd_yourdir 
>pip install virtualenv
>virtualenv "__" #(any name on the place of string whatever you want)
E.G.
> virtualenv venv
>D:Projectdir/venv/scripts/activate.bat
  DONE !!!
# It will look like this now

(venv) D:/projectdir>
how to activate virtualenv in windows
for windows
make a directory using mkdir nameofthedirectory
enter the directory using cd
then enter the following :
>pip install virtualenv
then name the virtualenv
>virtualenv somename
then activate the virtualen
on Windows, virtualenv creates a batch file

>\yourvirtuallenname \Scripts\activate.bat
activate virtual environment on windows
venv\Scripts\activate.bat




Python

Related
decrease hours in datetime python Code Example decrease hours in datetime python Code Example
how to create qthread in pyqt5 Code Example how to create qthread in pyqt5 Code Example
flask clear session Code Example flask clear session Code Example
create an empty dataframe Code Example create an empty dataframe Code Example
recursive python program to print numbers from n to 1 Code Example recursive python program to print numbers from n to 1 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8