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 [2024/04/07 01:55] – [environment file to install pip package from a local repository] rajuconda_notes [2024/04/07 02:02] – [specify package version with "git+https" in conda environment file] raju
Line 385: Line 385:
 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"
  
-==== environment file to install from a specific git branch ====+==== specify package version with git+https ==== 
 +<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", specify package version with git+https in conda environment file
  
 ===== dummy ===== ===== dummy =====
conda_notes.txt · Last modified: 2024/05/15 04:17 by admin