Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

conda create environment without packages

conda create --name myenv python=3.8 --no-default-packages
Comment

conda create new environment in specified location

# Use the --prefix or -p option to specify where to write the environment files. For example:
conda create --prefix /tmp/test-env python=2.7
Comment

create environment without conda

python3 -m venv env_name
source env_name/bin/activate
# If you have a req file:
pip install --upgrade -r requirements.txt
Comment

PREVIOUS NEXT
Code Example
Shell :: Remove the credentials of git 
Shell :: centos upgrade nodejs 
Shell :: how to login to git from terminal 
Shell :: Unable to connect to libvirt qemu:///system. 
Shell :: how to install lol 
Shell :: give permission to file ubuntu 
Shell :: update r packages from anaconda 
Shell :: install ldapsearch 
Shell :: install powershell 
Shell :: npm install material ui icons 
Shell :: how to check how many files are in a folder linux 
Shell :: command to install react cli 
Shell :: clean cache in linux 
Shell :: delete git config all remote url 
Shell :: Updating SpaceVim Manually 
Shell :: telnet windows 10 
Shell :: fish disable welcome message 
Shell :: linux give full permission to directory 
Shell :: unset git global config 
Shell :: configure aws cli on linux 
Shell :: start grafana server 
Shell :: destroy pipeline concourse 
Shell :: customize dock in ubuntu 
Shell :: how to update ionic 
Shell :: how to uninstall npm packages 
Shell :: linux free up ram 
Shell :: heroku installation check 
Shell :: bash check if package is installed 
Shell :: how to initialize a git repository command line 
Shell :: curl weather report 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =