User Tools

Site Tools


conda_notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
conda_notes [2024/04/07 01:55] – [environment file to install pip package from a local repository] rajuconda_notes [2024/04/07 01:58] – [environment file to install from a specific git branch] raju
Line 386: Line 386:
  
 ==== environment file to install from a specific git branch ==== ==== environment file to install from a specific git branch ====
 +<code>
 +name: test_chessli
 +channels:
 +  - defaults
 +dependencies:
 +  - python=3.11
 +  - pandas=1.5.3
 +  - pip
 +  - pip:
 +    - chessli
 +    - git+https://github.com/lervag/apy.git@v0.6.0#egg=apy
 +</code>
 +
 +Ref:-
 +  * https://stackoverflow.com/questions/47617552/how-can-i-specify-a-custom-git-branch-in-my-pipfile - where I found the answer
 +  * https://github.com/lervag/apy/tags?after=v0.9.1 - versions of the api package < 0.9.1
  
 ===== dummy ===== ===== dummy =====
conda_notes.txt · Last modified: 2024/05/15 04:17 by admin