Conda install Linux:
Conda install MacOS:
Conda install Windows:
Conda recipe and Anaconda installer for the DeDop tool contained in https://github.com/DeDop/dedop
Install conda-build
in your root Miniconda:
source activate
conda install conda-build
Clone this repo:
git clone https://github.com/DeDop/dedop-conda.git
Build Conda package dedop
(see recipe/meta.yaml
):
cd dedop-conda conda build recipe conda build --output-folder output/directory recipe #only for Linux/MacOS
Test new Conda package dedop
in test environment dedop-test
conda create -n dedop-test python=3
source activate dedop-test
conda install --use-local dedop
...
dedop --help
To upload the package to Anaconda Cloud (public repository)
conda install anaconda-client
anaconda login
anaconda upload path/to/package.tar.bz2
Current dedop repository URL: https://anaconda.org/pans/dedop/files
Install constructor
in your root Miniconda:
source activate
conda install constructor
Clone this repo:
git clone https://github.com/DeDop/dedop-conda.git
Build Anaconda installer dedop
(see installer/construct.yaml
):
cd dedop-conda
constructor installer
- For the DeDop shell, we'd like to have desktop icons for Windows, Mac OS and at least Ubuntu. Currently, we can only have a Windows menu group (which is ok). See conda/constructor#38
- On Windows,
constructor
will install anything it finds in a package'sMenu
entry. Therefore users currently find also entries for Jupyter Notebook and the IPython QT Console, which is annoying. - We would actually like to create an installer, where Miniconda is just a sub-tree. This is required because later we'll have to add an Electron GUI with HTML/JS sources:
<install-dir>/
bin/
docs/
notebooks/
gui/
python/
...
- Checkout: https://github.com/conda/conda-launch