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 revision
Previous revision
Next revisionBoth sides next revision
conda_notes [2023/12/28 09:05] – [which solver am I using?] rajuconda_notes [2024/04/07 02:01] – [environment file to install from a specific git branch] raju
Line 384: Line 384:
  
 tags | <nowiki>--find-links</nowiki>, pip config local packages, how to specify local repo location for pip packages, conda install pip package from a "local directory" tags | <nowiki>--find-links</nowiki>, pip config local packages, how to specify local repo location for pip packages, conda install pip package from a "local directory"
 +
 +==== specify package version with "git+https" in conda environment file ====
 +<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
 +
 +tags | pip "git+https" release, conda "git+https" release, conda git depend on a "specific release"
  
 ===== dummy ===== ===== dummy =====
conda_notes.txt · Last modified: 2024/05/15 04:17 by admin