Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

show environment in virtualenvwrapper

lsvirtualenv
Comment

activate environment in virtualenvwrapper

workon [<name>]
Comment

python virtualenvwrapper

### install virtualenvwrapper ###
pip install virtualenvwrapper-win
### Add an environment variable WORKON_HOME to specify the path to store environments. By default, this is %USERPROFILE%Envs. ###

### ↓↓↓ use cmd or cmder (don't use ps terminal) for any of the following commands ↓↓↓ ###

### list venvs ###
lsvirtualenv

### create venv (automatically activated after creation) ###
mkvirtualenv <name>

### remove venv ###
rmvirtualenv <name>

### activate venv ###
workon <name>

### deactivate venv ###
deactivate


### General Syntax ###
mkvirtualenv [-a project_path] [-i package] [-r requirements_file] [virtualenv options] <name>
Comment

using virtualenvwrapper to create new virtualenv

mkvirtualenv <the name you want for your env> -a <a project path> 
  -p <python version> -r <requirements file/file path>

#project path - project to associate the virtualenv created to 
#python version - 3.10 or 3.9, 
#requirements file - folder/filename.txt
Comment

PREVIOUS NEXT
Code Example
Shell :: ubuntu install unzip 
Shell :: apt install yarn 
Shell :: redis cache start 
Shell :: debian 9 enable rc.local 
Shell :: install pgadmin 
Shell :: pimcore setup / installation 
Shell :: git check differences between two projects 
Shell :: ruby install on fedora 
Shell :: rename all file extention terminal 
Shell :: how to pull from specific branch 
Shell :: update cpanel 
Shell :: git bash in cmd 
Shell :: bash while 
Shell :: delete folder from repo 
Shell :: learn prisma 
Shell :: git go back to commit 
Shell :: kubectl install 
Shell :: rename a directory in git 
Shell :: npm i postgresql 
Shell :: ubuntu 20.04 ifconfig public ip address 
Shell :: chown a file 
Shell :: git log --oneline 
Shell :: how to convert colab notebook to html 
Shell :: docker no pg_hba.conf entry for host SSL off 
Shell :: react bootstrap 
Shell :: install node on fish shell 
Shell :: How to create and extract an archive or .tar file using linux commands 
Shell :: conda install django-cors-headers 
Shell :: terraform apply target 
Shell :: clear terminal mac 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =