Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python create env ubuntu

#------FOR LINUX/MAC---------#
sudo apt-get install build-essential libssl-dev libffi-dev python-dev #installing requirements
sudo apt-get install -y python3-venv #installing venv 
python3 -m venv env #creating virtual env
source env/bin/activate #activating virtual env


#-------FOR WINDOWS----------# 
py -m pip install --user virtualenv #installing venv
py -m venv env #creating virtual env
.envScriptsactivate #activating virtual env
Comment

PREVIOUS NEXT
Code Example
Python :: python class 
Python :: creating a list in python 
Python :: how to convert to string in python 
Python :: import math sqrt python 
Python :: how to urllib3 
Python :: output path jupyter 
Python :: try except keyerror 
Python :: np.polyfit plot 
Python :: update queryset in django 
Python :: find unique char in string python 
Python :: rename columns 
Python :: python to excel 
Python :: python unzip a zip 
Python :: how to change plot size in matplotlib 
Python :: execute linux command in python 
Python :: how to custom page not found in django 
Python :: python try except 
Python :: python get memory address 
Python :: contains duplicate in python 
Python :: discordpy get role by id 
Python :: convert all items in list to string python 
Python :: play sound on python 
Python :: python mean 
Python :: python lock using a file 
Python :: change xlabel rotate in seaborn 
Python :: create square matrix python 
Python :: How to load .mat file and convert it to .csv file? 
Python :: save image from jupyter notebook 
Python :: np.random.normal 
Python :: how to remove all 2 in a list python 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =