美文网首页
软件安装以及使用备忘

软件安装以及使用备忘

作者: 小金刚葫芦妹 | 来源:发表于2019-07-19 17:03 被阅读0次

Github

Add/stages changes/files 批量修改、添加、删除

git add -A //stages all changes
git add . //stages new files and modifications, without deletions
git add -u //stages modifications and deletions, without new files

Visual studio code

git graph是一个不错的扩展。安装完成后,可以从底部状态栏打开图表视图。

HPC

Creating an environment with R with \color{red}{Conda}

module load conda
module list
conda --version
conda list
#Create a new conda environment with all the r-essentials conda packages built from CRAN:
 #  Only do this the first time
conda create -n r_env r-essentials r-base
source activate r_env #  activate this environment

################
# run R script
Rscript testr.r
# run R script background and save screen print to txt 
R CMD BATCH test.r output.txt &
################

source deactivate #  deactivate an active environment,

Creating an environment with Python with \color{red}{Conda}

# To see a list of available python versions first
conda search "^python$"
#Create a new conda environment with Python 3.7.4
 #  Only do this the first time
conda create -n py_en python=3.7.4
#  activate this environment
source activate py_en
#Install additional Python packages to a virtual environment.
conda install -n yourenvname [package]
#  deactivate this environment
source deactivate

conda virtual environment
conda info --envs

conda 安装R packages命令:

conda install -c r r-dplyr
如果需要的桌面使用RStudio,也可以通过conda安装,具体命令:
conda install -c r rstudio

  1. Download and install Anaconda.
  2. Create a new conda environment with all the r-essentials conda packages built from CRAN:
    conda create -n r_env r-essentials r-base
  3. Activate the environment:
    conda activate r_env
  4. List the packages in the environment:
    conda list

To activate / deactivate an active environment

To activate this environment, use:
source activate r_env
To deactivate an active environment, use:
source deactivate

Linux commands

monitor jobs
View user's usage top #
View my usage top -u userID

save print history > history_print.txt

Python

// upgrading pip 
pip install --upgrade pip
//install package 
pip install itchat 

lyx

How to Edit Chinese in Lyx

  1. Create New document
    1.1 File -> New
  2. Set Language
    2.1 Document -> Settings -> Language
    image.png
    2.2 Language: Chinese (simplified); Encoding: Other: Unicode (CJK) (utf8)
  3. Enjoy Chinese Typing

相关文章

  • 软件安装以及使用备忘

    Github Add/stages changes/files 批量修改、添加、删除 Visual studio ...

  • VIM极简使用备忘

    VIM极简使用备忘 一、vim启动、模式切换及退出vim0、vim软件安装windows用户可以从官网下载安装。地...

  • apt-get install 安装软件的时候,出现无法获得锁的

    作者按:备忘。 问题: 只要虚拟机重新开机后,使用apt-get install安装软件的时候就会出现如下错误: ...

  • window 上快速使用vim

    使用bundle安装plugin, 以及window和linux的不同的, 不需要下载软件直接使用vim 其实, ...

  • Homebrew命令

    使用brew安装软件 比如安装git:brew install git 使用brew卸载软件 使用brew查询软件...

  • choco使用记录

    目录 # 用途# 安装# 使用# ----》搜索软件# ----》安装软件# ----》查看软件# ----》升级...

  • React Native系列【mac下环境搭建】

    本文仅用来记录个人安装过程备忘 环境 安装node 本机已经安装nvm,直接使用nvm安装 安装Watchman ...

  • pygame的安装以及备忘

    一开始上来就写一些对函数的理解,终究是对初学者的不友好,考虑到更多学习pygame这个模块的人大多是从事编程教育或...

  • Linux添加系统环境变量

    在Linux下使用源码安装软件的时候,通常只能在软件安装目录下使用该软件命令(使用yum命令安装的除外),这样太麻...

  • motif检测-homer

    软件下载 软件安装 软件使用 gene fa

网友评论

      本文标题:软件安装以及使用备忘

      本文链接:https://www.haomeiwen.com/subject/nspslctx.html