conda env create -f environment.yml conda env list conda activate myenv
conda info
conda create --name myclone --clone myenv
- myclone - new environment
- myenv - existing environment
conda list -n myenv
conda env remove --name myenv
conda install --name myenv scipy conda install scipy=0.15.0 conda install scipy curl
NCI_model |- main.py |- infer.py |- tabapp |- requirements.in |- development.ini |- setup.py |- tutorial |- init.py |- templates |- mytemplate.jinja2
python3 -m pip install -r requirements/requirements.txt
screen -S xxx 是创建窗口 screen -ls 看现在有的窗口 screen -r xxx是打开已有的窗口 如果说那个被开启了 可以用screen -r -d xxx