摘要:
20230320 git clone --branch <branchname> <remote-repo-url> or git clone -b <branchname> <remote-repo-url> example below: git clone -b passwordless-aut 阅读全文
摘要:
20230320 conda install和pip install安装到哪里 conda install xxx:这种方式安装的库都会放在anaconda3/pkgs目录下,这样的好处就是,当在某个环境下已经下载好了某个库,再在另一个环境中还需要这个库时,就可以直接从pkgs目录下将该库复制至新环 阅读全文
摘要:
20230320 conda create environment conda create --name arg_env_name 基于 python3.6 创建一个名为test_py3 的环境 conda create --name test_py3 python=3.6 基于 python2. 阅读全文