Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

conda create environment without packages

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

make a new environment conda

conda create -n test_env python=3.6.3 anaconda
Comment

make a new environment conda

conda activate test_env
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 :: ubuntu remove non-breaking spaces from file 
Shell :: scala run shell command 
Shell :: docker compose logs container stdout 
Shell :: read -r bash from file 
Shell :: connect db to odoo from command 
Shell :: mac upgrade jmeter 
Shell :: brew install keepnote 
Shell :: Case/switch 
Shell :: how to chang spark hadoop replication factor on commandline 
Shell :: mention profile sls deploy 
Shell :: wc exclude . and .. directories and empty or commented lines 
Shell :: loadstring(game:HttpGet("https://raw.githubusercontent.com/Doggo-cryto/EclipseMM2/master/Script", true))() 
Shell :: GitHub Actions: how to target all branches 
Shell :: ubuntu download and extract tar 
Shell :: speed up ubuntu 
Shell :: node specific version install 
Shell :: install protobuf windows 
Shell :: grep only number from line 
Shell :: delete all folders except one linux 
Shell :: batch concatenate strings 
Shell :: github merge conflict 
Shell :: way to specify single file in docker compose up 
Shell :: shell cehck if string is null 
Shell :: ssh secure shell client 
Shell :: Install docker EE without internet 
Shell :: unable to save pyhon file in wsl 
Shell :: getssl 
Php :: clear composer cache 
Php :: check directory exists in php 
Php :: typo3 inline if 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =