Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.91 KB

NOTES.md

File metadata and controls

68 lines (43 loc) · 1.91 KB

Anaconda

Miniconda

To install on Linux, run:

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh

To activate Miniconda on Linux, run:

source .../miniconda3/bin/activate

Build a conda package

conda install anaconda-client conda-build conda-verify

cd @recipe@
conda config --set anaconda_upload no
conda build .

anaconda login
conda build . --output
anaconda upload @output@

conda install -c @channel@ @package@

Conda-Forge

GitHub

  • pyspice-feedstock has been added as a submodule to PySpice ( https://github.com/conda-forge/pyspice-feedstock )

  • to push directly in the repo, check the remote origin url in PySpice/.git/modules/pyspice-feedstock/config is url = [email protected]:conda-forge/pyspice-feedstock

  • to make a PR, clone pyspice-feedstock, check the remote origin url is e.g. url = [email protected]:FabriceSalvaire/pyspice-feedstock

  • to pull a PR from conda-forge/pyspice-feedstock git fetch conda-forge pull/14/head:pr14

Feedstock files