Anaconda 入门级《Conda Packages》 --191205

Conda Packages

Conda包是压缩的tarball文件(.tar.bz2)或.conda文件
组成
  • system-level libraries
  • Python or other modules
  • executable programs and other components
  • metadata under the info/directory
  • a collection of files that are installed directly into an install
    prefix

使用包

搜索:conda search pkgname
安装:conda install pkgname

包结构

.
├── bin
│ └── pyflakes
├── info
│ ├── LICENSE.txt
│ ├── files
│ ├── index.json
│ ├── paths.json
│ └── recipe
└── lib
└── python3.5
https://conda.io/projects/conda/en/latest/user-guide/concepts/packages.html#using-packages

  • bin contains relevant binaries for the package
  • lib contains the relevant library files (eg. the .py files)
  • info contains package metadata
发布了26 篇原创文章 · 获赞 3 · 访问量 1395

猜你喜欢

转载自blog.csdn.net/qq_42937176/article/details/103412486
今日推荐