Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anaconda/anaconda-client
Anaconda Server Client
https://github.com/anaconda/anaconda-client
Last synced: 4 days ago
JSON representation
Anaconda Server Client
- Host: GitHub
- URL: https://github.com/anaconda/anaconda-client
- Owner: anaconda
- License: bsd-3-clause
- Created: 2013-03-27T21:52:37.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-17T15:30:35.000Z (9 months ago)
- Last Synced: 2024-04-25T21:44:20.036Z (8 months ago)
- Language: Python
- Homepage: https://anaconda.org
- Size: 2.08 MB
- Stars: 143
- Watchers: 48
- Forks: 265
- Open Issues: 100
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Anaconda Client
This is a command line client that provides an interface to [anaconda.org](https://anaconda.org/).
## Quickstart:
First, create an account on [anaconda.org](https://anaconda.org/), if you may still don't have one.
Then, install `anaconda-client` into your conda environment:
```bash
conda install anaconda-client
```Log into your account:
```bash
anaconda login
```Test your login wit the `whoami` command:
```bash
anaconda whoami
```For a complete tutorial on building and uploading Conda packages to [anaconda.org](https://anaconda.org) visit the [documentation page](https://docs.anaconda.org/anacondaorg/).
## Local development
Setup conda environment:
```bash
make init
```Activate development environment:
```bash
conda activate anaconda_client
```Run anaconda-client commands:
```bash
python -m binstar_client.scripts.cli --version
```