dfeich / org-babel-examples

Examples using emacs org mode babel inline source code with different backend languages
570 stars 116 forks source link

conda package not found #7

Closed notuntoward closed 4 years ago

notuntoward commented 4 years ago

These examples are great! Is the best way to use it to just clone from GitHub?

I tried to use conda to install the package but it was unable to find it:

conda install -c dfeich orgbabelhelper
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.

PackagesNotFoundError: The following packages are not available from current channels:

  - orgbabelhelper

Current channels:

  - https://conda.anaconda.org/dfeich/win-64
  - https://conda.anaconda.org/dfeich/noarch
  - https://repo.anaconda.com/pkgs/main/win-64
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/r/win-64
  - https://repo.anaconda.com/pkgs/r/noarch
  - https://repo.anaconda.com/pkgs/msys2/win-64
  - https://repo.anaconda.com/pkgs/msys2/noarch

To search for alternate channels that may provide the conda package you're
looking for, navigate to

    https://anaconda.org

and use the search bar at the top of the page.
dfeich commented 4 years ago

Probably there is no build that matches your current python requirements. I have packaged the following versions

~$ conda search -c dfeich orgbabelhelper
Loading channels: done
# Name                       Version           Build  Channel             
orgbabelhelper                 1.0.0          py27_0  dfeich              
orgbabelhelper                 1.0.1          py27_0  dfeich              
orgbabelhelper                 1.0.3          py27_0  dfeich              
orgbabelhelper                 1.0.3  py36h2e041ab_0  dfeich              
orgbabelhelper                 1.0.4          py36_0  dfeich              
orgbabelhelper                 1.0.5          py36_0  dfeich              
orgbabelhelper                 1.0.7          py36_0  dfeich

what build would you need? I am now usually working in python3.

notuntoward commented 4 years ago

Yeah, that must be it. At the moment, I'm using Python 3.7 on 64 bit windows. Thanks.